ubuntu 16.04 设置 自动获取 / 静态IP

一.解决方法

设置自动获取IP

第一步:编辑文件/etc/network/interfaces
ubuntu 16.04 设置 自动获取 / 静态IP_第1张图片
ubuntu 16.04 设置 自动获取 / 静态IP_第2张图片
第二步:重启network
ubuntu 16.04 设置 自动获取 / 静态IP_第3张图片

设置静态ip

auto eth0
iface eth0 inet dhcp
auto eth0
iface eth0 inet static
	address 192.168.21.12
	netmask 255.255.255.0
	network 192.168.21.0
	broadcast 192.168.21.255
	gateway 192.168.21.1
	dns-nameservers 192.168.21.1

你可能感兴趣的:(linux)