某些网站仅在 Linux 上无法加载

某些网站仅在 Linux 上无法加载

我刚刚在之前安装有 Windows 10 的 PC 上安装了 Kubuntu 17.04。

我正在使用 Mozilla Firefox,有些网站(例如github.com)无法加载,而其他网站(例如youtube.com)则运行正常。

我正在使用无线连接。

这个问题在我的笔记本电脑上发生过几次,它也使用 Kubuntu 17.04,使用有线连接(到同一个路由器),我会通过拔下并重新插入电线来解决这个问题。但是,重新连接并不能解决问题。

命令sudo iptables -S

输出:

-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT

命令:sudo ifconfig

输出:

enp6s0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether 50:e5:49:36:22:95  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 424  bytes 31388 (31.3 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 424  bytes 31388 (31.3 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlp4s7: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.24  netmask 255.255.255.0  broadcast 192.168.1.255                                                                                            
        inet6 fe80::3089:963e:7f8a:2c5  prefixlen 64  scopeid 0x20<link>                                                                                             
        ether 5e:df:dd:a5:88:f3  txqueuelen 1000  (Ethernet)                                                                                                         
        RX packets 15410  bytes 16443953 (16.4 MB)                                                                                                                   
        RX errors 0  dropped 0  overruns 0  frame 0                                                                                                                  
        TX packets 14127  bytes 1780416 (1.7 MB)                                                                                                                     
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0 

命令:route

输出:

Kernel IP routing table                                                                                                                                              
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface                                                                                        
default         192.168.1.1     0.0.0.0         UG    600    0        0 wlp4s7                                                                                       
link-local      0.0.0.0         255.255.0.0     U     1000   0        0 wlp4s7                                                                                       
192.168.1.0     0.0.0.0         255.255.255.0   U     600    0        0 wlp4s7             

命令:cat /etc/hosts

127.0.0.1       localhost                                                                                                                                            
127.0.1.1       home                                                                                                                                                 

# The following lines are desirable for IPv6 capable hosts                                                                                                           
::1     ip6-localhost ip6-loopback                                                                                                                                   
fe00::0 ip6-localnet                                                                                                                                                 
ff00::0 ip6-mcastprefix                                                                                                                                              
ff02::1 ip6-allnodes                                                                                                                                                 
ff02::2 ip6-allrouters     

命令:ip -6 route

输出:

fe80::/64 dev wlp4s7 proto kernel metric 256  pref medium

命令:ping github.com 输出:ping: github.com: Name or service not known

这不是我第一次遇到这个问题。一年前,在装有 Gnome 桌面环境和 Ubuntu 16.04 以及 KDE 16.04 的笔记本电脑上也发生过同样的问题。

谷歌上有很多这样的问题,但所有问题要么没有答案,要么答案与我的问题无关。

在此处输入图片描述

答案1

您的互联网连接不正常。具体来说,您的 DNS 解析不正常。

尝试添加以下行

nameserver 80.80.80.80 

致你的

/etc/resolv.conf

这将临时添加 freenom DNS 服务器直到下次启动

相关内容