谢谢 。它为我工作。
1-我有IP地址,但没有Internet连接
2-LAN端口处于活动状态
3-我已分配了静态IP地址
我/etc/network/interfaces
有
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
iface enp4s8 inet static
address 192.168.2.251
netmask 255.255.255.0
network 192.168.2.0
我的ifconfig
输出为(这是手动编辑-有点像这样)
~$ ifconfig
enp4s8 Link encap:Ethernet HWaddr 00:19:d1:73:b7:11
inet addr:192.168.2.251 Bcast:192.168.2.251 Mask:255.255.255.0
inet6 addr: fe80::219:d1ff:fe73:b711/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:13181 errors:0 dropped:0 overruns:0 frame:0
TX packets:8462 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:16690503 (16.6 MB) TX bytes:884958 (884.9 KB)
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:317 errors:0 dropped:0 overruns:0 frame:0
TX packets:317 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:40111 (40.1 KB) TX bytes:40111 (40.1 KB)
我改变了/etc/network/interfaces
对
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto enp4s8
#iface enp4s8 inet dhcp
#iface enp4s8 inet static
#address 192.168.2.251
#netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
#gateway 192.168.2.1
#dns-nameservers 192.168.2.1
然后按照上述步骤操作:
1- sudo service network-manager stop
2-调sudo ifconfig enp4s8 up
出界面
3-然后,强制Ubuntu要求新的DHCP租约 sudo dhclient enp4s8
4-手动完成sudo service network-manager start
*这是当我连接到网络时
这些步骤有效。
仅供参考-Live CD也具有互联网连接,我没有从Live CD复制文件。
待办事项-我需要拥有静态IP地址。如果我使用旧设置,则无法正常工作。仍在故障排除中,与此帖子无关。请原谅。
/etc/network/interfaces
文件的内容是什么?