Cảm ơn . Nó làm việc cho tôi.
1 - Tôi đã có địa chỉ IP nhưng không có kết nối internet
2 - cổng LAN đã hoạt động
3 - Tôi đã gán địa chỉ IP tĩnh
Tôi /etc/network/interfaces
đã có
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
Tôi đã có ifconfig
đầu ra như (đây là chỉnh sửa thủ công - nó giống như thế này)
~$ 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)
Tôi đã thay đổi /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
Sau đó làm theo các bước trên:
1 - sudo service network-manager stop
2 - sudo ifconfig enp4s8 up
để hiển thị giao diện
3 - Sau đó, buộc Ubuntu yêu cầu thuê DHCP mới bằng cách sudo dhclient enp4s8
4 - Đã làm thủ công sudo service network-manager start
* Đây là khi tôi có kết nối với mạng
Những bước này đã làm việc.
FYI - Live CD cũng có kết nối internet Tôi không sao chép các tập tin từ cd trực tiếp.
Todo - Tôi cần phải có địa chỉ IP tĩnh. Nó không hoạt động, nếu tôi quay lại với các thiết lập cũ. vẫn xử lý sự cố và không liên quan đến bài đăng này. Xin lỗi.
/etc/network/interfaces
tập tin là gì?