netsh를 이용한 다수의 IP를 한번에 세팅하기
netsh란 Windows 명령 프롬프트에서 실행가능한 명령어로, Network정보(IP,DNS등)를 수정및 확인가능한 명령어이다.
사용법은 아래와 같다.
C:\>netsh interface ip set address name="인터페이스이름" source= dhcp/static
사용법
[name=]<인터페이스이름>
[source=]dhcp
[source=] static addr="IP 주소" mask="서브넷 마스크" gateway="gateway 주소"/none gwmetric="정수"
DHCP 세팅을 위한 Batch 파일
netsh interface ip set address name="로컬 영역 연결" dhcp
netsh interface ip add dns name="로컬 영역 연결" dhcp
ipconfig
pause
Static IP 세팅을 위한 Batch 파일
netsh interface ip set address name="로컬 영역 연결" source=static addr=222.xxx.xxx.xxx mask=255.255.255.0 gateway=222.xxx.xxx.xxx
netsh interface ip add address name="로컬 영역 연결" addr=192.168.77.202 mask=255.255.255.0 gateway=192.168.77.1
netsh interface ip add address name="로컬 영역 연결" addr=192.168.88.202 mask=255.255.255.0 gateway=192.168.88.1
netsh interface ip add address name="로컬 영역 연결" addr=192.168.0.202 mask=255.255.255.0 gateway=192.168.0.1
netsh interface ip add address name="로컬 영역 연결" addr=192.168.1.202 mask=255.255.255.0 gateway=192.168.1.1
netsh interface ip add dns name="로컬 영역 연결" 8.8.8.8
ipconfig
pause