본문 바로가기

Enjoy IT/Window

netsh 명령어로 IP 설정하기



기본적으로

netsh 명령어로 IP설정과 네트워크를 끄고 켜는 작업도 가능하다.




먼저 DHCP 설정

:: 는 배치파일의 주석부분이다.



::dhcp.reg


netsh interface ip set address "이더넷" dhcp



::DNS 설정

netsh interface ip set dnsservers "이더넷" static 8.8.8.8 primary


netsh interface set interface "이더넷" disable

netsh interface set interface "이더넷" enable


dhcp.bat







고정 IP 설정


:: 211.169.200.150.reg


::네트워크 속성의 네트워크 이름을 보고 이더넷 대신 써준다. 기본적으로 로컬 영역 연결인 경우가 많다.

::원하는대로 수정     [ 네트워크 이름 ]        [ IP ]          [ 마스크 ]      [게이트웨이]

netsh interface ip set address "이더넷" static 211.169.200.150 255.255.255.128 211.169.200.129



::DNS 설정

netsh interface ip set dnsservers "이더넷" static 8.8.8.8 primary



::네트워크 재시작 부분

netsh interface set interface "이더넷" disable

netsh interface set interface "이더넷" enable

150.bat




고정 IP 배치파일을 우클릭 - 편집을 통해 원하는대로 수정해서 사용하세요

주의 *  윈도우 10은 'dnsservers' 명령어인데 그 이하 윈도우는 'dns' 명령어가 먹힌다.




※ 참고할 사이트

http://snoopybox.co.kr/1522

http://www.berrycracker.net/archives/1252

http://kigam.tistory.com/entry/netsh-%EB%AA%85%EB%A0%B9%EC%96%B4-%EB%AA%A8%EC%9D%8C