연결 : 네트워크에 연결할 수 없습니까? -핑


18

Google의 DNS 또는 네트워크 외부에 핑을 시도하면 connect: Network is unreachable어떻게됩니까?

이 중 하나를 업데이트 할 수 없습니다.

나는 네트워킹에 익숙하지 않다 ... 그리고 우분투. 그러나 이것들은 내가 도울 것으로 생각한 명령의 결과입니다.

$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:0e:7f:a9:10:54 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.5/24 brd 192.168.0.255 scope global eth0
    inet6 fe80::20e:7fff:fea9:1054/64 scope link 
       valid_lft forever preferred_lft forever
3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN 
    link/ether 86:0b:cb:43:63:a5 brd ff:ff:ff:ff:ff:ff
    inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
mcserver@helloworld:~$ 

$ vi /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
nameserver 192.168.0.5
nameserver 8.8.8.8

$ vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
        address 192.168.0.5
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.0.255
        post-up iptables-restore < /etc/iptables.up.rules
        dns-nameservers 192.168.0.5 8.8.8.

출력의 기능ip route show
한나라당

1
192.168.0.0/24 dev eth0 프로토 커널 범위 링크 src 192.168.0.5 192.168.122.0/24 dev virbr0 프로토 커널 범위 링크 src 192.168.122.1
user240010

10
ip route add default via 192.168.0.1 dev eth0라우터의 IP 주소가 192.168.0.1이라고 가정하면 연결 상태가되어야합니다. 이것이 작동하면 ( ping 8.8.8.8먼저 시도한 다음 google.com) 변경 사항이 유지되는지 내 답변을 확인하십시오.
GnP

@ user240010, 당신은 훌륭한 솔루션을 썼습니다. 어떻게 알아 냈는지 물어봐도 될까요? 감사.
Frank

@GnP, 당신은 훌륭하고 영리한 솔루션을 썼습니다. 로그 아웃 후에도 지속되지 않는 것을 발견했습니다. 그것을 유지하는 방법을 알려주시겠습니까? 감사.
Frank

답변:


14

다음 줄이 잘못되었습니다 :

iface eth0 inet static
    address 192.168.0.5
    netmask 255.255.255.0
    network 192.168.1.0 <<<<<<<<<<<<<<<<<<<<<<<< It should be 192.168.0.0
    broadcast 192.168.0.255
    post-up iptables-restore < /etc/iptables.up.rules
    dns-nameservers 192.168.0.5 8.8.8.8

또한 기본 게이트웨이 설정이없는 것 같습니다.

네트워크에 대한 자세한 정보가 없으면 끝에 다음 줄을 추가하는 것이 좋습니다.

    gateway <YOUR.ROUTER.IP.ADDRESS>

따라서 라우터 IP 주소가 192.168.0.1이라고 가정하면 전체 항목이됩니다.

iface eth0 inet static
    address 192.168.0.5
    netmask 255.255.255.0
    network 192.168.0.0
    broadcast 192.168.0.255
    post-up iptables-restore < /etc/iptables.up.rules
    gateway 192.168.0.1
    dns-nameservers 192.168.0.5 8.8.8.8

3

문제는 기본 게이트웨이를 설정해야한다는 것입니다

1) 터미널

2) 스도 수

3) 입력

$ route add default gw (예 : 192.168.136.1) eth0

4) 때로는 핑 (ping 8.8.8.8) 할 수는 있지만 브라우저에 인터넷 연결이 없으면

5) 'nano /etc/resolv.conf'로 이동

6) 추가

7) 네임 서버 8.8.8.8

8) 네임 서버 192.168.136.0 (게이트웨이) 또는 네임 서버 127.0.1.1

9) sudo /etc/init.d/networking 재시작 또는 서비스 네트워킹 재시작


askubuntu에 오신 것을 환영합니다. 두 가지주의 사항 : 1. 실제로 다른 내용을 제시하지 않는 한 허용되는 답변으로 질문에 대답하지 마십시오. 2. sudo su여기에는 여러 가지 이유로 나쁜 습관으로 간주되므로에는 절대로 조언하지 마십시오 .
Marc Vanhoomissen

2

기본 게이트웨이를 추가해야 할 수도 있습니다. 루트 사용자로서이 명령을 실행하십시오.

예 :

root@localhost:~# route add default gw 172.23.5.1

eth0 / eoM에서 처음 3 옥텟 172.23.5를 얻을 수 있습니다.

그런 다음 IP를 핑하여 연결이 작동하는지 확인하십시오.

root@localhost:~# ping 10.56.94.81    
PING 10.56.94.81 (10.56.94.81) 56(84) bytes of data.    
64 bytes from 10.56.94.81: icmp_seq=1 ttl=62 time=0.203 ms    
64 bytes from 10.56.94.81: icmp_seq=2 ttl=62 time=0.197 ms    
64 bytes from 10.56.94.81: icmp_seq=3 ttl=62 time=0.210 ms    
^C    
--- 10.56.94.81 ping statistics ---    
3 packets transmitted, 3 received, 0% packet loss, time 2033ms    
rtt min/avg/max/mdev = 0.197/0.203/0.210/0.012 ms

-1

필자의 경우 시스템이 방화벽 뒤에 있으면 인터넷과 상호 작용할 수 없습니다. HTTP / HTTPS / FTP에 프록시 서버를 지정하지 않으면 도달 할 수 없습니다.

이 시도:

export  http_proxy=http://yourcompanyproxy.company.com:1234   
export  ftp_proxy=ftp://yourcompanyproxy.company.com:1234  
export  https_proxy=https://yourcompanyproxy.company.com:1234
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.