我们的测试服务器配置了 CentOS。但是,当我们将机器设置为动态 IP 时,互联网运行正常。
但我们需要静态 IP 来配置互联网(讽刺的是)并使机器可访问。然而,静态 IP 互联网不起作用。
可能是什么问题呢?
PS:在静态 IP 上,机器可以从互联网访问(传入流量运行良好)。
编辑:这是所有人的信息。http://paste2.org/p/1741156
答案1
只需检查默认网关
#route
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.61.0 * 255.255.255.192 U 1 0 0 eth0
192.168.122.0 * 255.255.255.0 U 0 0 0 virbr0
link-local * 255.255.0.0 U 1000 0 0 eth0
#check the following line
default 192.168.61.62 0.0.0.0 UG 0 0 0 eth0
如果没有,您需要设置默认网关
route add default gw 10.0.0.2
答案2
[root@192 ~]# nslookup google.com
;; connection timed out; no servers could be reached
您尚未设置 DNS。运行以下命令:
echo "nameserver 8.8.8.8" > /etc/resolv.conf
echo "nameserver 8.8.4.4" >> /etc/resolv.conf
然后再试一次。