레지스트리를 변경하는 방법과 netsh를 이용하는 방법 두가지가있습니다.

 

레지스트리 경로는 다음 둘중하나에서 관련 항목 찾아 변경하면 된다고 하네요..

 

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\(network card name)

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\(network card name)

(리부팅을 해야한다는군요)

netsh interface ipv4 set address name= "무선 네트워크 연결" source=static 192.168.0.3 255.255.255.0 192.168.0.1 gwmetric=0 <- 무선 네트워크 연결 : 아이피,서브넷마스크,게이트웨이 변경

netsh interface ipv4 set dnsserver name= "무선 네트워크 연결" source=static address=61.41.153.2 register=both <- primary DNS 변경

netsh interface ipv4 add dnsservers name= "무선 네트워크 연결" address=164.124.101.2 index=2 <- secondary DNS 변경

AND