1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - Linux系统 - centos - 正文

君子好学,自强不息!

centos下访问不了外网怎么办?

2022-06-13 | centos | 1818ip | 327°c
A+ A-

问题描述:

内网的这一台centos服务器,以前一直都是好好的,可突然不能上外网了,表现,内网可以访问这台电脑资源,但是在这一台服务器上无法访问外网。

[root@localhost ~]# arp -n
Address                  HWtype  HWaddress           Flags Mask            Iface
192.168.1.102            ether   e4:9a:79:d8:bf:0d   C                     eth0
192.168.1.214            ether   40:8d:5c:21:00:1a   C                     eth0
192.168.1.111            ether   4c:8d:79:e4:aa:d0   C                     eth0
192.168.1.1              ether   00:17:16:08:3d:6a   CM                    eth0
[root@localhost ~]#

问题排查:

非DNS问题,也非IP冲突问题,网关的网卡地址导致。

解决方法:

更新网卡地址,先找到可访问外网的网卡地址,比如在当前WIN中执行 arp -a,得到网卡地址。

D:\mysite>arp -a
 
接口: 192.168.1.204 --- 0xc
  Internet 地址         物理地址              类型
  192.168.1.1           00-17-16-08-33-6a     动态
  192.168.1.3           94-de-80-55-1b-8d     动态
  239.255.255.250       01-00-5e-70-ff-fa     静态
  255.255.255.255       ff-ff-ff-ff-ff-ff     静态
 
D:\mysite>

在centos上执行如下命令:

# 在 Centos 上先执行删除旧的网卡信息
/sbin/arp -d 192.168.1.1
 
# 重新设置新的,上面win里面找到的 网卡,横线改为冒号 
/sbin/arp -s 192.168.1.1 00:17:16:08:33:6a

测试:

[root@localhost ~]# ping www.baidu.com
PING www.a.shifen.com (183.232.231.172) 56(84) bytes of data.
64 bytes from 183.232.231.172: icmp_seq=1 ttl=55 time=9.03 ms
64 bytes from 183.232.231.172: icmp_seq=2 ttl=55 time=8.80 ms
64 bytes from 183.232.231.172: icmp_seq=3 ttl=55 time=10.1 ms
64 bytes from 183.232.231.172: icmp_seq=4 ttl=55 time=108 ms
^C
--- www.a.shifen.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3814ms
rtt min/avg/max/mdev = 8.804/34.058/108.239/42.831 ms
You have new mail in /var/spool/mail/root
[root@localhost ~]#

完美解决!


本文来源:1818IP

本文地址:https://www.1818ip.com/post/1414.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。