Linux Kali - インターネットは接続されていますが、VPNやTorなしでは動作しません。

Linux Kali - インターネットは接続されていますが、VPNやTorなしでは動作しません。

この質問に対する答えを見つけることも、自分で解決することもできません。 Ubuntu/Kali/Windows 11を3回起動しました。 UbuntuとWindowsではインターネットが完璧に動作しますが、Kali Linuxの場合、Wi-Fiに接続してもインターネットは利用できません。

コマンドはping -c3 8.8.8.8正常に実行されますが、ウェブサイト(google.comなど)をpingすると返されますping: www.google.com: Name or service not known。 VPNをオンにするか、Torブラウザを使用してインターネットにアクセスできます。ただし、Firefoxでは接続できません。

VPNをオンにするとpingが可能でwww.google.com、そうでなければ不可能です。

私のもの/etc/resolv.conf文書:

nameserver 8.8.8.8

rootでコマンドを実行すると、for t in filter nat mangle raw security; do echo "Table '$t'" ; iptables -t "$t" -nvL 2>/dev/null; echo; done次のような結果が表示されます。

Table 'filter'
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Table 'nat'
Chain PREROUTING (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain POSTROUTING (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Table 'mangle'
Chain PREROUTING (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain POSTROUTING (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Table 'raw'
Chain PREROUTING (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Table 'security'
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

コマンドを実行すると、次の結果grep hosts /etc/nsswitch.confが表示されます。

hosts:          files mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns myhostname
 

ベストアンサー1

このコマンドを実行すると、grep hosts /etc/nsswitch.conf次の項目が表示されます。

hosts:  files mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns myhostname

疑わしい場合は[!UNAVAIL=return]、人気のある名前/アドレス検索サービスが利用できない場合の戻りを示します。しかし残念ながら、これはDNSルックアップを使用する前の状況です。

慎重に削除しようとすると、次のようになります。

hosts:  files mdns4_minimal [NOTFOUND=return] dns

おすすめ記事