ubuntu 设置固定ip 命令行(ubuntu设置固定IP-简易版)
ubuntu 设置固定ip 命令行(ubuntu设置固定IP-简易版)sudo /etc/init.d/networking stop sudo /etc/init.d/networking start 检查设定内容ifconfig 发现重启网络不行那就重启机器吧更多详细信息参照man interfaces
- 首先设置IP
sudo vim /etc/network/interfaces
追加以下内容
auto eth0 iface eth0 inet static address 192.168.0.168 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1
- 修改dns配置
sudo vim /etc/resolv.conf
追加nameserver
nameserver 1.1.1.1
或者
nameserver 8.8.8.8
或者anything else
- 重启网络连接
sudo /etc/init.d/networking stop sudo /etc/init.d/networking start
- 检查设定内容
ifconfig
发现重启网络不行那就重启机器吧
更多详细信息参照
man interfaces