감사 . 그것은 나를 위해 일했다.
1-IP 주소는 있지만 인터넷에 연결되지 않았습니다
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-그런 다음 우분투가 강제로 새로운 DHCP 임대를 요청하도록 sudo dhclient enp4s8
4-수동으로 수행했습니다 sudo service network-manager start
* 이것은 네트워크에 연결되었을 때입니다
이 단계는 효과가있었습니다.
참고-라이브 CD에는 인터넷에 연결되어있어 라이브 CD에서 파일을 복사하지 않았습니다.
Todo-고정 IP 주소가 필요합니다. 이전 설정으로 돌아 가면 작동하지 않습니다. 이 문제와 관련이 있지만 여전히이 문제와 관련이 없습니다. PLZ 변명.
/etc/network/interfaces
파일 내용은 무엇입니까 ?