글
IP 주소 변경하기
Programming
2009. 8. 21. 09:55
실제 커맨드 상태에서 변경하는 방법은 아래와 같습니다.
netsh interface ip set address "로컬 영역 연결" static/dhcp ipaddr subnetmask gateway metric
ex) * DHCP 의 경우
- netsh interface ip set address "로컬 영역 연결" dhcp
* 고정 IP의 경우
- netsh interface ip set address "로컬 영역 연결" static 192.168.0.2 255.255.255.0 192.168.0.1 1 (게이트웨이까지 도달거리니까. 1이 기본)
참고, 현재 인터페이스 상태를 보고 싶을 때
- netsh interface ip show address
대부분은 netsh [하위 명령어] /? 하면서 따라가면 명령어의 사용법에 대해서 알 수 있다.
netsh interface ip set address "로컬 영역 연결" static/dhcp ipaddr subnetmask gateway metric
ex) * DHCP 의 경우
- netsh interface ip set address "로컬 영역 연결" dhcp
* 고정 IP의 경우
- netsh interface ip set address "로컬 영역 연결" static 192.168.0.2 255.255.255.0 192.168.0.1 1 (게이트웨이까지 도달거리니까. 1이 기본)
참고, 현재 인터페이스 상태를 보고 싶을 때
- netsh interface ip show address
대부분은 netsh [하위 명령어] /? 하면서 따라가면 명령어의 사용법에 대해서 알 수 있다.
'Programming' 카테고리의 다른 글
serialize ( 직렬화 ) (0) | 2010.03.22 |
---|---|
시리얼 통신 (0) | 2009.10.19 |
뉴욕의 프로그래머 (0) | 2009.09.04 |
[Network]슬라이딩 윈도우( Sliding window ) (0) | 2009.09.04 |
[도서] 임베디드 프로그래밍 C 코드 최적화 (0) | 2009.08.12 |