연결을 설정할 수 있지만 여전히 "연결 : 네트워크에 연결할 수 없습니다"라는 메시지가 나타납니다.

샐러드

Asus E402NA 노트북이 있습니다. Ubuntu 16.04를 설치했습니다. 설치가 끝날 때 설치 프로그램이 충돌했지만 여전히 Ubuntu를 부팅하고 시작할 수 있습니다 (이 정보가 유용한 정보인지 확실하지 않지만 지금 당장 우려되는 문제는 아닙니다).

Wi-Fi 네트워크를 볼 수 있고 연결할 수 있습니다 (잘못된 비밀번호를 사용하는지 감지합니다). 연결이 설정되면 연결이 보입니다. 그러나 온라인에 접속하려고 할 때 어떤 사이트에도 접속할 수없고 아무것도 핑할 수 없습니다.

$ ping 192.168.0.1
connect: Network is unreachable

$ ping 8.8.8.8
connect: Network is unreachable

이더넷을 사용하여 연결을 시도했지만 효과는 동일합니다. 연결이 설정되었음을 알려주지 만 모든 핑 시도에 대해 동일한 결과를 얻습니다. 라이브 USB로 부팅 할 때도 같은 일이 발생하므로 설치와 관련이 없다고 생각합니다. Debian 9.5.0 live usb를 실행하려고했는데 이더넷을 통해 연결할 때도 같은 일이 발생했습니다. Ubuntu 16.04 라이브 USB를 실행하는 것과 유사합니다.

설치된 Ubuntu 16.04에서 실행 한 몇 가지 명령의 출력은 다음과 같습니다. wifi 네트워크에 연결되어있는 동안 netstat를 실행했습니다.

$ netstat -natp
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      1336/cupsd      
tcp6       0      0 ::1:631                 :::*                    LISTEN      1336/cupsd 

$ ifconfig -a
enp1s0f2  Link encap:Ethernet  HWaddr 60:45:cb:bf:bd:2e  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

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:6836 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6836 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:507456 (507.4 KB)  TX bytes:507456 (507.4 KB)

wlp2s0    Link encap:Ethernet  HWaddr f0:03:8c:8f:5d:15  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

$ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

$ cat /etc/resolv.conf 
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN

$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

편집 : 실행할 때 sudo dhclient -v:

$ sudo dhclient -v
Internet Systems Consortium DHCP Client 4.3.3
Copyright 2004-2015 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/


Listening on LPF/wlp2s0/f0:03:8c:8f:5d:15
Sending on   LPF/wlp2s0/f0:03:8c:8f:5d:15
Listening on LPF/enp1s0f2/60:45:cb:bf:bd:2e
Sending on   LPF/enp1s0f2/60:45:cb:bf:bd:2e
Sending on   Socket/fallback
DHCPDISCOVER on wlp2s0 to 255.255.255.255 port 67 interval 3 (xid=0x995990e)
Unable to set up timer: out of range

If you think you have received this message due to a bug rather
than a configuration issue please read the section on submitting
bugs on either our web page at www.isc.org or in the README file
before submitting a bug.  These pages explain the proper
process and the information we find helpful for debugging..

exiting.
스틸 드라이버

당신을 기반으로 ifconfig출력, 연결이 설립되는 것 같습니다 OSI 링크 계층 ,하지만 인터페이스는 IP 주소가 할당되지 않았는지 확인합니다.

이에 대한 몇 가지 가능한 설명이 있습니다. 예를 들면 다음과 같습니다.

  • 네트워크에서 DHCP를 사용하지 않음 (다른 장치가 고정 IP 주소로 구성되어 있음을 의미 함)
  • 네트워크가 DHCP를 사용하도록 구성되어 있지만 DHCP 서버가이 장치에 주소를 제공하지 않습니다 (MAC 기반 화이트리스트 또는 블랙리스트 때문일 수 있음).
  • 방화벽으로 인해 DHCP가 작동하지 않습니다 (DHCP 검색 패킷이 클라이언트를 종료하는 것을 허용하지 않거나 DHCP 응답이 클라이언트에 도달하는 것을 허용하지 않음).

의 자세한 출력은 sudo dhclient -v클라이언트가 최소한 DHCP 검색 단계를 시작하고 있음을 확인합니다. 그러나 알 수없는 오류와 함께 갑자기 종료됩니다.

Unable to set up timer: out of range

이 특정 오류를 검색하면 다음 버그 보고서 isc-dhcp-client : Error 'Unable to set up timer : out of range'when system time too far in future , 이는 문제가있는 경우 DHCP 클라이언트가 시스템의 하드웨어 시계가 DHCP 서버와 충돌합니다.

클럭 오프셋을 수정하면 문제가 해결됩니다.

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

Related 관련 기사

뜨겁다태그

보관