如果只是單純要快速更換IP、DNS等設定的話
我自己是用windows的netsh指令
1. 先寫好想要的網路設定檔案
------------------------
home_ip.txt
------------------------
interface
ip
set address "區域連線" dhcp
set dns "區域連線" static 168.95.1.1
------------------------
office_ip.txt
------------------------
interface
ip
set address "區域連線" static 192.168.1.1 255.255.240.0 192.168.1.254 1
set dns "區域連線" static 192.168.0.1
2. 再寫好batch檔
------------------------
ch_home.bat
------------------------
netsh -f home_ip.txt
------------------------
ch_office.bat
------------------------
netsh -f office_ip.txt
要換IP的時候,點batch檔就ok了…
快的很 :)
當然是沒有漂亮的UI啦



























































































