1. 어댑터 설정 변경 바로 열기


네트워크 및 인터넷설정 열기 ->네트워크 및 공유센터 -> 어댑터 설정 변경


윈10 기준으로 위와 같은 화면을 보려면 위와 같이 3번의 과정을 거쳐야 한다.

이게 다 귀찮다면 실행 창을 열고 아래와 같이 입력 하면 된다.


control netconnections


2. 어댑터 사용/사용하지 않기 설정


netsh interface set interface name="inline" admin=disabled

netsh interface set interface name="inline" admin=enabled

interface name 은 어댑터 설정 변경에서 바꿀 수 있다.


3, IP 변경


netsh -c int ip set address name="inline" source=static addr=192.168.63.150 mask=255.255.255.0 gateway=192.168.63.1 gwmetric=0

netsh -c int ip set dns name="inline" source=static addr=168.126.63.1 register=PRIMARY


좀 더 자세한 내용을 알고 싶으면 이쪽을 참조 한다.

+ Recent posts