网络仅在某些网站上可用

网络仅在某些网站上可用

我尝试在家里创建一个 ftp 服务器,然后我进入我的路由器设置并按下启用 DMZ 端口转发...现在除了 Stackoverflow 和 AskUbuntu 之外没有任何网站可以工作...(我不知道怎么做)。我尝试重置路由器并关闭/打开但没有任何效果...我的手机和其他电脑检测到互联网但一直在加载。ping 也向我显示了以下内容:

ping: www.google.com: Name or service not known

或者当我尝试使用 ping 命令访问 stackoverflow 或 askubuntu 时,它给出了与 google 相同的错误 ^^ 但我可以通过 Firefox 网页浏览器访问。顺便说一句:我是在我上网有问题的机器上发布了这篇文章。

我正在使用电缆,这里是输出:抱歉,我是通过电话连接的,所以我需要输入所有内容:

猫/等/网络/接口:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp4s0
iface enp4a0 inet dhcp

这里是:sudo lshw -C network:

*-network
description: Ethernet interface
Product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
Vendor: Realtek Semiconductor Co., Ltd.
Physical id: 0
Bus info: pci@0000:04:00.0
Logical Name: enp4s0
Version: 0c
Serial: bc:ee:7b:8d:85:82
Size:  1Gbit/s
Capacity: 1Gbit/s
Width: 64 bits
Clock: 33 MHz
Capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation 
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168g-2_0.0.1 02/06/13 ip=10.100.102.7 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
Resources: irq:35 ioport:d000(size=256) memory:fe100000-fe100fff memory:f2100000-f2103fff

抱歉,我试图拍照,但是遇到了问题,在手机里找不到……

答案1

  • 您的 /etc/network/interfaces 文件中有一个拼写错误:

terminal...

gksudo gedit /etc/network/interfaces

改变这个:

iface enp4a0 inet dhcp

对此:

iface enp4s0 inet dhcp

然后重新启动计算机。

  • 另外,替换你的 r8169 驱动程序:

terminal...

sudo apt-get update

sudo apt-get install r8168-dkms

reboot
  • 最后,确保您的Wired Connection网络配置文件中的 MTU 设置设为 1500 或自动。路由器中也一样。

相关内容