Ubuntu16/18配置静态IP地址

第一步找到待修改的网口名称

  ifconfig

第二步修改配置文件内容

vim /etc/network/interfaces

添加内容:

auto ens160
iface ens160 inet static
address 192.168.1.105
netmask 255.255.255.0
gateway 192.168.1.1

第三步重启网卡

/etc/init.d/networking restart

你可能感兴趣的:(Ubuntu16/18配置静态IP地址)