Windows下自動切換IP指令碼

來源:互聯網
上載者:User

     在不同環境使用電腦經常要切換IP,利用netsh interface ip命令可以輕鬆切換IP和DNS:

     netsh interface ip有以下命令:

     add            - 在一個表格中添加一個配置項。
     delete         - 從一個表格中刪除一個配置項。
     dump           - 顯示一個配置指令碼。
     help           - 顯示命令列表。
     install        - 安裝 IP 協議。
     reset          - 重設 IP 配置。
     set            - 設定配置資訊。
     show           - 顯示資訊。
     uninstall      - 卸載 IP 協議。

 

     netsh interface IP set有以下的命令:
     set address    - 設定通向介面的 IP 位址或預設閘道。
     set compartment - 修改分段配置參數。
     set dnsservers - 設定 DNS 伺服器模式和地址。
     set dynamicportrange - 修更改態連接埠分配所使用連接埠的範圍。
     set global     - 修改全域配置常規參數。
     set interface  - 修改 IP 的介面配置參數。
     set neighbors  - 設定鄰居地址。
     set route      - 修改路由參數。
     set subinterface - 修改子介面配置參數。
     set winsservers - 設定 WINS 伺服器模式和地址。

 

     簡單樣本1:設定固定IP,儲存為bat檔案

   @echo off
   @rem 設定IP為192.168.0.1,子網路遮罩為255.255.255.0,預設閘道為192.168.0.254
   netsh interface ip set address local static 192.168.0.1 255.255.255.0 192.168.0.254
   @rem 設定首選的DNS伺服器192.168.0.254
   netsh interface ip set dns local 192.168.0.254
   @rem 添加DNS伺服器202.106.196.115
   netsh interface ip add dns local 202.106.196.115 index=2

 

    樣本2:自動擷取

   @echo off   netsh interface ip set address name="local" source=dhcp   netsh interface ip set dns name="local" source=dhcp
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.