본문 바로가기
카테고리 없음

배치파일 활용하기

by IT History 2021. 12. 20.
728x90
반응형

회사에서는 내부망을 사용해야하는 경우가 있는데 이 경우 지정된 IP만 사용이 가능합니다.

그래서 bat파일을 활용해 한번에 고정IP/ 자동IP 로 설정 하는 배치 파일 입니다.

고정IP/DNS 설정

1. 고정 IP 설정
Netsh interface ip set address 네트워크이름 static IP주소 서브넷마스크 게이트웨이주소

예) Netsh interface ip set address "이더넷" static 100.100.1.100 255.255.255.0 100.100.1.1

2. 고정 DNS 설정
주 DNS
Netsh interface ip set dns 네트워크이름 static DNS주소 primary
보조 DNS
Netsh interface ip add dns 네트워크이름 DNS주소 index=2

예)
1. 주 DNS 설정
Netsh interface ip set dns "이더넷" static 0.0.0.0 primary
2. 보조 DNS 설정
Netsh interface ip add dns "이더넷" 0.0.0.0 index=2

최종)
Netsh interface ip set address "이더넷" static 100.100.1.100 255.255.255.0 100.100.1.1
Netsh interface ip set dns "이더넷" static 0.0.0.0 primary
Netsh interface ip add dns "이더넷" 0.0.0.0 index=2

 

자동 IP/DNS 설정

1. 자동IP 설정
netsh interface ip set address name="이더넷" source=dhcp
netsh interface ip set dns name="이더넷" source=dhcp

메모장에 고정/유동 에 대한 Batch 내용을 작성 후

다른이름 저장 하기로 확장자는 .bat 으로 생성 하면 됩니다.

 

728x90
반응형

댓글