기본적으로
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
고정 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
고정 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
'Enjoy IT > Window' 카테고리의 다른 글
윈도우7 이상 3389포트 열고 원격제어 하기 (0) | 2016.06.02 |
---|---|
윈도우 디펜더 레지스트리로 내리기 (0) | 2016.05.04 |
악성코드 분석에 도움이 될만한 사이트 정리 (0) | 2016.04.25 |
간단하게 바이러스 코드 만들기 (0) | 2016.04.22 |
컴퓨터 자동종료 코드 (0) | 2016.04.22 |