私はたくさん読んだアクベントインターネット接続の切断に関するその他のフォーラム投稿。私は静的IPv4設定で私のラップトップにDebian 8.2 Jessyをインストールしました:
- IPアドレス10.0.0.5
- マスク255.255.255.0
- ゲートウェイ 10.0.0.138
- DNS 8.8.8.8(GoogleのDNS)+ ISPのDNS
効率的。その後、いくつかの処理の後、突然接続が切断されました。ルータにpingを試みます。
root@debian82:/home/user# ping 10.0.0.138
PING 10.0.0.138 (10.0.0.138) 56(84) bytes of data.
64 bytes from 10.0.0.138: icmp_seq=1 ttl=255 time=1.37 ms
64 bytes from 10.0.0.138: icmp_seq=2 ttl=255 time=1.60 ms
64 bytes from 10.0.0.138: icmp_seq=3 ttl=255 time=0.740 ms
64 bytes from 10.0.0.138: icmp_seq=4 ttl=255 time=0.734 ms
64 bytes from 10.0.0.138: icmp_seq=5 ttl=255 time=0.668 ms
64 bytes from 10.0.0.138: icmp_seq=6 ttl=255 time=0.707 ms
^C
--- 10.0.0.138 ping statistics ---
6 packets transmitted, 6 received, 0% packet loss, time 5003ms
rtt min/avg/max/mdev = 0.668/0.971/1.601/0.372 ms
Googleにpingを試しました。
root@debian82:/home/user# ping google.com ping: unknown host
google.com
dhcpに切り替えて設定を更新しようとしました。
root@debian82:/home/user# dhclient -r -v eth0 && rm
/var/lib/dhcp/dhclient.*; dhclient -v eth0 Internet Systems Consortium
DHCP Client 4.3.1 Copyright 2004-2014 Internet Systems Consortium. All
rights reserved. For info, please visit
https://www.isc.org/software/dhcp/
Listening on LPF/eth0/00:02:a5:b5:e1:eb Sending on
LPF/eth0/00:02:a5:b5:e1:eb Sending on Socket/fallback DHCPRELEASE on
eth0 to 10.0.0.138 port 67 Internet Systems Consortium DHCP Client
4.3.1 Copyright 2004-2014 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/eth0/00:02:a5:b5:e1:eb Sending on
LPF/eth0/00:02:a5:b5:e1:eb Sending on Socket/fallback DHCPDISCOVER
on eth0 to 255.255.255.255 port 67 interval 5 DHCPREQUEST on eth0 to
255.255.255.255 port 67 DHCPOFFER from 10.0.0.138 DHCPACK from 10.0.0.138 bound to 10.0.0.11 -- renewal in 110048 seconds.
これが私が得るものです:
ライト/ネットワーク/インターフェース
allow-hotplug eth0
auto eth0
iface eth0 inet dhcp
# address 10.0.0.11
# netmask 255.255.255.0
# gateway 10.0.0.138
nameserver 8.8.8.8
nameserver 194.90.0.1
dns-nameservers 8.8.8.8 194.90.0.1 8.8.4.4
私は見つけることができるすべてを試して、各試みの間で再起動しました。私はどこで間違っていますか?内容は/etc/resolv.conf
例:
user@debian82:~$ nano /etc/resolv.conf
nameserver 10.0.0.138
編集する:に別のネームサーバー(GoogleとISP)を追加しました/etc/resolv.conf
。インターネットのないコンピュータでこの編集内容を作成しています。
ベストアンサー1
/etc/resolv.conf
問題を解決するには、ネームサーバーを追加してください。以前は次のようになりました。
user@debian82:~$ nano /etc/resolv.conf
nameserver 10.0.0.138
これで、次のようになります。
user@debian82:~$ nano /etc/resolv.conf
nameserver 10.0.0.138
nameserver <ISP's dns name server>
nameserver 8.8.8.8 <(Google's)>
接続が復元されます。
PING google.com (194.90.196.110) 56(84) bytes of data.
64 bytes from 194.90.196.110: icmp_seq=1 ttl=59 time=14.5 ms
64 bytes from 194.90.196.110: icmp_seq=2 ttl=59 time=15.9 ms
64 bytes from 194.90.196.110: icmp_seq=3 ttl=59 time=15.3 ms
64 bytes from 194.90.196.110: icmp_seq=4 ttl=59 time=14.0 ms
64 bytes from 194.90.196.110: icmp_seq=5 ttl=59 time=15.3 ms
^C
--- google.com ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 5882ms
rtt min/avg/max/mdev = 14.030/15.048/15.930/0.669 ms