os/Window

netsh로 윈도우 네트웍 쉽게 바꾸기

C/H 2007. 3. 20. 09:58
** 회사.bat
netsh -c int ip set address name="로컬 영역 연결" source=static addr=11.11.11.11 mask=255.255.255.0 gateway=11.11.11.1 gwmetric=0

name : 변경하고자하는 interface (보통 "로컬 영역 연결")
       - 내 내트워크환경->오른쪽 클릭->속성 에서 확인
addr : 변경하고자하는 IP주소
mask : 변경하고자하는 subnetmask
gateway : 변경하고자하는 gateway 입니다.

자동IP일 경우는 netsh -c int ip set address name="로컬 영역 연결" source=dhcp 로 사용

** dns 등록
netsh -c int ip set dns name="로컬 영역 연결" source=static addr=168.126.63.1 register=PRIMARY add dns name="로컬 영역 연결" addr=168.126.63.2 index=2

보조 dns를 사용하지 않는 경우에는 밑줄 친 부분은 제외

** 자동
netsh -c int ip set dns name="로컬 영역 연결" source=dhcp

** 회사.bat
netsh -c int ip set address name="로컬 영역 연결" source=static addr=11.11.11.11 mask=255.255.255.0 gateway=11.11.11.1 gwmetric=0
netsh -c int ip set dns name="로컬 영역 연결" source=static addr=168.126.63.1 register=PRIMARY add dns name="로컬 영역 연결" addr=168.126.63.2 index=2

** 집.bat
netsh -c int ip set address name="로컬 영역 연결" source=dhcp
netsh -c int ip set dns name="로컬 영역 연결" source=dhcp


netsh -c interface dump > 사무실.txt
netsh exec 사무실.txt
+---------------------------------------------------------------------------------+
win98계열에선 안됩니다

출처 : http://blog.naver.com/scaarian?Redirect=Log&logNo=13000254
반응형