在/etc/network/interfaces中添加静态ip
auto eth0
iface eth0 inet static
address 192.168.31.133
netmask 255.255.255.0
gateway 192.168.31.2
修改完成后,init 6重启虚拟机,发现不能上网了:找不到你所输入的域名host!
其实是因为nat模式原来有一套默认的dns,但是在你配置新ip后,默认的就取消了,都需要你手动去配置dns。
解决方法:
ubunu下,在/etc/resolvconf/resolv.conf.d/base中添加
nameserver 192.168.31.2
nameserver 8.8.8.8
完成后生效配置文件 命令:resolvconf -u
接着在/etc/resolv.conf文件中可以看到,如下的DNS
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 172.16.77.2
nameserver 8.8.8.8
到这里就可以ping通外网了!