ifconfig -a
系統會顯示 網卡名稱,例如: ens192
編輯 vi /etc/network/interface
固定IP 方式 如以下:
# The primary network interface
auto ens192
#iface ens192 inet dhcp
iface ens192 inet static
address 192.168.103.105
netmask 255.255.0.0
gateway 192.168.1.254
dns-nameservers 192.168.1.100 139.175.1.1 168.95.1.1 8.8.8.8 8.8.4.4
儲存離開
輸入
/etc/init.d/networking restart
查看網路是否恢復啟用
- The End -