ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • IP 변경 쉽게 하기(노트북 유저)
    카테고리 없음 2007. 5. 20. 13:24


    1. netsh 이용(배치파일)


    * [Network Interface Name]: 보통 "로컬 영역 연결" 혹은 "Local Area Network"

    1-1. Windows XP
    DHCP
    netsh interface ip set address name="[Network Interface Name]" source=dhcp
    netsh interface ip set dns name="[Network Interface Name]" source=dhcp

    고정IP
    netsh interface ip set address name="[Network Interface Name]" static [IP Address] [Subnet Mask] [Default Gateway] 1
    netsh interface ip set dns name="[Network Interface Name]" static [DNS1] primary
    netsh interface ip add dns name="[Network Interface Name]" [DNS2] index=2

    1-2. Windows Vista(버전업되서 조금 다르다)
    DHCP
    netsh interface ipv4 set address name="[Network Interface Name]" source=dhcp
    rem netsh interface ipv4 set dnsserver name="[Network Interface Name]" source=dhcp

    고정IP
    netsh interface ipv4 set address name="[Network Interface Name]" static [IP Address] [Subnet Mask] [Default Gateway] 1
    netsh interface ipv4 set dnsserver name="[Network Interface Name]" static [DNS1] primary
    netsh interface ipv4 add dnsserver name="[Network Interface Name]" [DNS2] index=2

    예제


    2. 유틸리티 이용
     - Network Configurator(http://wonmin82.mchol.com/)
     - Shock IP Changer(http://www.docs.kr/): 이놈이 좀 더 직관적
       다운링크: http://www.docs.kr/entry/Download-Shock-IPChanger-en

    여러가지 다 해 봐도 써보면 배치파일이 제일 편하다는거
    Shock IP Changer 강추
    아래는 v1.2 직접 다운 링크



    댓글

Designed by Tistory.