Ubuntu如何配置静态IP
首先,打开终端(Ctrl+Alt+T),输入命令:ifconfig -a,查看当前网络设置,确定网卡名称。
如果是Wired connection,网卡名称一般是eth0;如果是Wireless connection,网卡名称一般是wlan0。
然后,打开网络配置文件:sudo gedit /etc/network/interfaces
在打开的文件中,找到如下行:
iface lo inet loopback
将其改为:
iface lo inet loopback
iface eth0 inet static //若是Wired connection,则修改为eth0
iface wlan0 inet static //若是Wireless connection,则修改为wlan0
address 192.168.1.100 //配置静态IP地址
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8
保存文件,重启网络:sudo /etc/init.d/networking restart
至此,静态IP地址配置完成。
相关文章