2016-05-06 10:13:57.0|分类: ubuntu|浏览量: 2864
在Ubuntu下查看IP的命令为ifconfig
设置固定IP地址 sudo vim /etc/network/interfaces 修改iface eth0 inet dhcp 为 iface eth0 inet static 并在这句后添加 address 192.168.1.1 netmask 255.255.255.0 gateway 192.168.1.254
修改dns解析
因为以前是dhcp解析,所以会自动分配dns服务器地址,而一旦设置为静态ip后就没有自动获取到的dns服务器了,要自己设置一个。
sudo vim /etc/resolv.conf
写上一个公网的DNS
保存退出后使用如下命令重启网络服务 /etc/init.d/networking restart