我刚刚安装了 Ubuntu。我还没有正确设置我的互联网配置。
这是我的设置:
ifconfig:
eth0 (inet adr 192.168.10.101)
eth1 (no ip address)
lo (inet adr 127.0.0.1)
我的输出/etc/network/interfaces:
auto lo
iface lo inet loopback
auto eth0 inet static
address 10.1.18.16
netmask 255.255.255.0
gateway 10.1.18.1
broadcast 10.1.18.255
当我执行服务网络管理器重新启动时,我的 ifconfig 更改为上述输出。
ping 8.8.8.8 fails
ping www.google.com fails
我的/etc/resolv.conf is this
名称服务器
请问有什么帮助吗?
答案1
我是这样解决这个问题的:
首先,我编辑了这个文件:/etc/network/interfaces
使用我的有效数据(我不想在这里显示它们)
其次,我编辑了这个文件:/etc/resolv.conf
在其中添加了我的服务器名称及其地址。
第三,我编辑了这个文件:/etc/hosts
在其中添加了我的 IP 地址和我的机器名称。
最后,我运行这个命令:sudo service network - interface start / stop / restart INTERFACE = eth0