一、前言
1、前置知识
vi命令,systemctl命令
2、适用范围
Ubuntu 12+
二、设置步骤
1、修改网络接口文件
sudo vi /etc/network/interfaces
2、 关掉dhcp
#iface eth0 inet dhcp
3、 增加以下配置
iface eth0 inet static
address 192.168.1.251
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8
4、重启网络服务
systemctl restart networking