1. 程式人生 > >ubuntu配置靜態ip(同時可以上網)

ubuntu配置靜態ip(同時可以上網)

cd /etc/network

sudo vim interfaces

輸入:

auto eth0 //需要根據實際情況改

iface eth0 inet static

address 192.168.40.100

netmask 255.255.255.0

gateway 192.168.40.1

dns-nameservers 114.114.114.114 //配置dns才能上網

重啟生效.