# windows XP
1. cmd 실행
2. IP 세팅
[static]
C:\Documents and Settings\Administrator>netsh -c int ip set address name="로컬 영역 연결" source=static addr=192.168.1.100 mask=255.255.255.0 gateway=192.168.1.1 gwmetric=0
[dhcp]
C:\Documents and Settings\Administrator>netsh -c int ip set address name="로컬 영역 연결" source=dhcp
3. dns세팅
[static]
C:\Documents and Settings\Administrator>netsh -c int ip set dns name="로컬 영역 연결" source=static addr=168.126.63.1 register=PRIMARY
[dhcp]
C:\Documents and Settings\Administrator>netsh -c int ip set dns name="로컬 영역 연결" source=dhcp
※ 여기서 name=에 들어가는 "로컬 영역 연결"은 Ethernet adapter 이름인거 아시죠? ^^
# windows 7
1. cmd 실행
2. IP 세팅
[static]
C:\Documents and Settings\Administrator>netsh interface ip set address name="무선 네트워크 연결" static 192.168.1.151 255.255.255.0 192.168.1.1 1
※ 여기서 마지막 1 은 gwmetric 값입니다.
[dhcp]
C:\Documents and Settings\Administrator>netsh interface ip set address name="무선 네트워크 연결" dhcp
3. dns세팅
[static]
C:\Documents and Settings\Administrator>netsh interface ip add dns name="무선 네트워크 연결" 168.126.63.1
[dhcp]
C:\Documents and Settings\Administrator>netsh interface ip add dns name="무선 네트워크 연결" dhcp
※ 배치(bat)파일은 첨부할게요 ^^
'Windows' 카테고리의 다른 글
다른이름으로 저장 안될때 (0) | 2012.12.13 |
---|---|
FAT32와 NTFS의 차이 (0) | 2012.07.25 |
[아웃룩2010] 그림 다운로드 차단 해제 방법 (0) | 2012.05.03 |
[Windows XP] SP1 & IE6에서 SP3 & IE8까지 업그레이드 (0) | 2012.04.26 |
[cmd] 하위폴더의 파일삭제 (0) | 2012.04.25 |
[cmd]윈도 계정 패스워드 변경 (0) | 2012.04.16 |
윈도우 실행명령어 모음 (1) | 2012.04.12 |
About mstsc(원격 데스크탑) (0) | 2012.04.12 |