Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows XP系統教程 >> XP系統應用技巧 >> 良藥治頑疾 自動切換IP小腳本很簡單

良藥治頑疾 自動切換IP小腳本很簡單

日期:2017/1/24 21:55:43      編輯:XP系統應用技巧

  因為經常帶著筆記本來回跑,需要頻繁的切換 IP 地址,有沒有一款好軟件可以實現?這是很多辦公族經常咨詢的問題,其實不需要用到什麼軟件,通過以下兩種小腳本,就能讓Windows下IP實現自動切換,而且方法還是很簡單的說,是不是很想知道呢?那就趕緊往下瞧吧.

  1. 切換成自動獲取IP

  @echo off

  netsh interface ip set address name="local" source=dhcp

  netsh interface ip set dns name="local" source=dhcp

  2. 切換成固定IP

  @echo off

  netsh interface ip set address local static 192.168.0.84 255.255.255.0 192.168.0.254

  netsh interface ip set dns local 192.168.0.254

  netsh interface ip add dns local 202.106.196.115 index=2

  netsh interface ip add dns local 202.106.0.20 index=3

  "local" 是你的本地網卡名稱,也可能是 "本地連接",需要自己替換下。如果是2個固定IP間的來回切換,把第2個腳本自己改改吧 :)

  dns設置中,第一個是set,表示設置,後面兩個則是添加,自己替換成當地的dns server。

  從辦公到家庭環境,或者從會議室到辦公工位上的IP切換相信已經把你搞的煩死了,那麼用本教程的2個小腳本吧,保證馬上讓你藥到病除,而且這兩個小腳本也不復雜。

Copyright © Windows教程網 All Rights Reserved