ubuntu配置静态IP主要修改interfaces文件
我们直接打开文件
vi /etc/network/interfaces
然后添加以下配置
auto eth0 iface eth0 inet static address 10.214.161.240 netmask 255.255.255.0 #子网掩码 gateway 10.214.161.1 #默认网关
eth0需要ifconfig -a查看当前网卡名字,如果不能确认网卡名字,可以使用命令让网卡灯闪烁来确认,具体命令为
ethtool -p eth0 5
这样可以使eth0网卡灯闪烁5秒,可以进行相关问题排查,ethtool相关命令可以查看我的笔记https://sulao.cn/post/220.html
然后网卡配置完了,我们可以配置dns(如果有需要)
vi /etc/resolve.conf
添加或者修改如下配置
nameserver 127.0.0.1 nameserver 8.8.8.8
最后就是重启网卡了
/etc/init.d/networking restart
最好再使用ifconfig -a确认IP是否配置到网卡上了