Ubuntu 12.10 中的网络配置

Ubuntu 12.10 中的网络配置

我的 Windows 7 设置如下,运行正常。IP 地址 192.168.46.31 子网掩码 255.255.255.0 默认网关 192.168.46.1 首选 DNS 服务器 10.230.253.253 Alternet DNS 服务器 203.147.88.2

但在 ubuntu 12.10 中我只改变了文件来实现这一点。1 如下/etc/network/interfaces所示

# interfaces(5) file used by ifup(8) and ifdown(8)
#auto lo
#iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.46.31
netmask 255.255.255.0
#network 192.168.46.0
#broadcast 192.168.46.255
gateway 192.168.46.1

另一个文件是 /etc/resolv.conf,类似

# 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 10.230.253.253
nameserver 203.147.88.2

但它没有连接。当我点击“连接信息”时,它显示“未找到有效的连接信息”

当我 ping DNS 时,它显示如下

$ ping 10.230.253.253
PING 10.230.253.253 (10.230.253.253) 56(84) bytes of data.
From 192.168.46.31 icmp_seq=1 Destination Host Unreachable

难道我做错了什么?

答案1

取消注释以下几行

auto lo

iface lo inet loopback

network 192.168.46.0

然后禁用并启用网络。

您也可以尝试通过图形网络管理器设置手动配置。

相关内容