컴퓨터 관리의 네트워크 어댑터에 장치가 인식되어 있는 상태에서,
소프트웨어 오류로 인해 네트워크 연결 창이 뜨지 않는 등 GUI 환경으로 IP 설정이 되지 않는
문제가 발생될 경우, 아래와 같이 조치 합니다.
다음은 예제입니다.
C:\Documents and Settings\snjee.KHENG>netsh interface ip set address name="로컬 영역 연결" source=static addr=192.168.10.99 mask=255.255.255.0
위의 명령을 풀이하면,
netsh interface ip set address name="[연결이름,일반적으로 로컬 영역 연결로 되어있음]" source=static addr=[변경 또는 설정할 IP 주소] mask=[서브넷 마스크 주소]
입니다.
ipconfig 명령으로 변경(설정)된 IP 주소를 확인합니다.
C:\Documents and Settings\snjee.KHENG>ipconfig
Windows IP Configuration
Ethernet adapter 로컬 영역 연결:
Connection-specific DNS Suffix . : IP Address. . . . . . . . . . . . : 192.168.10.97 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.10.1
참고 1. Gateway 변경
netsh interface ip set address name="로컬 영역 연결" gateway=192.168.10.1 gwmetric=0
참고 2. Primary DNS 변경netsh interface ip set dns name="로컬 영역 연결" source=static addr=192.168.10.2 register=PRIMARY
참고 3. Secondary DNS 변경netsh interface ip add dns name="로컬 영역 연결" addr=168.126.63.1 index=2
참고 4. WINS 변경netsh interface ip set wins name="로컬 영역 연결" source=static addr=192.168.10.2
소프트웨어 오류로 인해 네트워크 연결 창이 뜨지 않는 등 GUI 환경으로 IP 설정이 되지 않는
문제가 발생될 경우, 아래와 같이 조치 합니다.
다음은 예제입니다.
C:\Documents and Settings\snjee.KHENG>netsh interface ip set address name="로컬 영역 연결" source=static addr=192.168.10.99 mask=255.255.255.0
위의 명령을 풀이하면,
netsh interface ip set address name="[연결이름,일반적으로 로컬 영역 연결로 되어있음]" source=static addr=[변경 또는 설정할 IP 주소] mask=[서브넷 마스크 주소]
입니다.
ipconfig 명령으로 변경(설정)된 IP 주소를 확인합니다.
C:\Documents and Settings\snjee.KHENG>ipconfig
Windows IP Configuration
Ethernet adapter 로컬 영역 연결:
Connection-specific DNS Suffix . : IP Address. . . . . . . . . . . . : 192.168.10.97 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.10.1
참고 1. Gateway 변경
netsh interface ip set address name="로컬 영역 연결" gateway=192.168.10.1 gwmetric=0
참고 2. Primary DNS 변경netsh interface ip set dns name="로컬 영역 연결" source=static addr=192.168.10.2 register=PRIMARY
참고 3. Secondary DNS 변경netsh interface ip add dns name="로컬 영역 연결" addr=168.126.63.1 index=2
참고 4. WINS 변경netsh interface ip set wins name="로컬 영역 연결" source=static addr=192.168.10.2
댓글