當嘗試連接到樓上的接入點路由器時,我掙扎了很長時間才意識到我的電腦根本無法識別我的乙太網路連接。它可以很好地連接到無線網絡,我可以將我的筆記型電腦連接到以太網,但不能連接到我的電腦。我最近更換了主機板,我想排除它是基於硬體的可能性。
我按照建議運行了這個這裡這就是它所顯示的:
$ sudo ethtool eno1
Settings for eno1:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Speed: 1000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
MDI-X: on (auto)
Supports Wake-on: pumbg
Wake-on: g
Current message level: 0x00000007 (7)
drv probe link
Link detected: yes
$ sudo dhclient eno1
/etc/resolvconf/update.d/libc: Warning: /etc/resolv.conf is not a symbolic link to /run/resolvconf/resolv.conf
$ sudo lshw -c network -sanitize
*-network
description: Ethernet interface
product: Ethernet Connection I217-V
vendor: Intel Corporation
physical id: 19
bus info: pci@0000:00:19.0
logical name: eno1
version: 00
serial: [REMOVED]
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=3.2.6-k firmware=0.13-4 latency=0 link=no multicast=yes port=twisted pair
resources: irq:26 memory:f7800000-f781ffff memory:f783c000-f783cfff ioport:f080(size=32)
任何幫助,將不勝感激。
編輯:新增輸出:
$ sudo ifconfig
eno1 Link encap:Ethernet HWaddr fc:aa:14:e4:74:ce
inet6 addr: fe80::feaa:14ff:fee4:74ce/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3955 errors:0 dropped:9 overruns:0 frame:0
TX packets:43 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:413445 (413.4 KB) TX bytes:6041 (6.0 KB)
Interrupt:20 Memory:f7800000-f7820000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:5501 errors:0 dropped:0 overruns:0 frame:0
TX packets:5501 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:946892 (946.8 KB) TX bytes:946892 (946.8 KB)
tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.30.1.26 P-t-P:10.30.1.25 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:23005 errors:0 dropped:0 overruns:0 frame:0
TX packets:15986 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:25277107 (25.2 MB) TX bytes:1607393 (1.6 MB)
wlxbcec23c36593 Link encap:Ethernet HWaddr bc:ec:23:c3:65:93
inet addr:192.168.0.207 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::2b13:56a1:3bc3:17c9/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:73958 errors:0 dropped:245 overruns:0 frame:0
TX packets:42374 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:87738456 (87.7 MB) TX bytes:11852387 (11.8 MB)
編輯2:新增輸出:
$ sudo cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto dsl-provider
iface dsl-provider inet ppp
pre-up /bin/ip link set eno1 up # line maintained by pppoeconf
provider dsl-provider
auto eno1
iface eno1 inet manual
$ sudo cat /etc/netplan/*.yaml
cat: '/etc/netplan/*.yaml': No such file or directory
編輯3:新增輸出:
$ ls -al /etc/resolv.conf
-rw-r--r-- 1 root eric 52 Aug 16 12:20 /etc/resolv.conf
$ cat /etc/resolv.conf
nameserver 209.222.18.222
nameserver 209.222.18.218
答案1
/etc/resolv.conf
您已將 /etc/resolv.conf 從符號連結變更為包含 VPN 的 DNS 伺服器的硬連線檔案。這是不正確的。這也意味著如果沒有 VPN,網站將無法找到其 IP 位址。
我們應該把事情放回去:
sudo rm -i /etc/resolv.conf
# 刪除目前文件
sudo ln -s /run/resolvconf/resolv.conf /etc/resolv.conf
# 重新建立原始符號鏈接
筆記:如果有/沒有 VPN 時出現任何 DNS 解析問題,我們稍後會解決這些問題。
編輯 /etc/netplan/*.yaml...
ls -al /etc/netplan/*.yaml
# 尋找檔案名稱
sudo -H gedit /etc/netplan/filename.yaml
並確保它只包含以下內容:
network:
version: 2
renderer: NetworkManager
然後在 中terminal
輸入:
sudo netplan generate
sudo netplan apply
reboot
編輯/etc/network/interfaces...
sudo -H gedit /etc/network/interfaces
更改這一行:
iface eno1 inet manual
到:
iface eno1 inet dhcp
然後在 中terminal
輸入:
sudo ifconfig en01 up
或者
sudo ip link set eno1 up
或者
reboot
最大傳輸單元
您的 DSL 連線的 MTU=1500 設定有問題。
Ubuntu 的網路配置中有一個 MTU 設置,路由器中有一個 WAN MTU 設定。
對於 DSL,常見的 MTU 設定是 1492。
若要確定正確的設置,請從所有 MTU 設定 = 1500 和 VPN = 關閉開始。 (VPN 需要不同的測試)。
在裡面terminal
:
ping [-c 計數] [-M do] [-s 封包大小] [主機]
使用的選項是:
c count
: ping 的次數M hint
:選擇路徑MTU發現策略。可以是do
(禁止分段,甚至本地分段)、want
(進行 PMTU 發現,當資料包大小較大時在本地分段)或dont
(不設定 DF 標誌)。s packet_size
:指定要傳送的資料位元組數。
您應該始終從 1472 開始,每次遞減 10。一旦收到回复,就加 1,直到收到碎片資料包。取該值(最後一個有效值)並將該值加上 28 以考慮各種 TCP/IP 標頭。例如。假設 1452 是正確的封包大小(您首先收到對 ping 的 ICMP 回覆)。實際 MTU 大小為 1480,這是我們正在使用的網路的最佳值。
ping -c 4 -M do -s 1472 8.8.8.8
# 這可能會顯示碎片
ping -c 4 -M do -s 1462 8.8.8.8
# 可能會顯示碎片
ping -c 4 -M do -s 1452 8.8.8.8
# 沒有碎片?
ping -c 4 -M do -s 1453 8.8.8.8
# 仍然沒有碎片?