Ich hatte Probleme damit, Reverse DNS mit nslookup unter Ubuntu 12.04 zum Laufen zu bringen. Hier ist die Ausgabe des Befehls nslookup und der Inhalt der verschiedenen netzwerkbezogenen Konfigurationsdateien.
Was könnte der mögliche Grund dafür sein, dass das nslookup nicht funktioniert? Warum benötige ich eine Internetverbindung, um eine Reverse-Lookup-Funktion für einen Eintrag in der /etc/hosts
Datei zu erhalten?
training@guest1:/etc/network$ nslookup 192.168.1.101
Server: 8.8.8.8
Address: 8.8.8.8#53
server can't find 101.1.168.192.in-addr.arpa.: NXDOMAIN
training@guest1:/etc/network$ cat /etc/hosts
127.0.0.1 localhost
#127.0.1.1 Slave1
192.168.1.101 MyUbuntuLaptop
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
training@guest1:/etc/network$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.201
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
training@guest1:/etc/network$ ping MyUbuntuLaptop
ping MyUbuntuLaptop (192.168.1.101) 56(84) bytes of data.
64 bytes from MyUbuntuLaptop (192.168.1.101): icmp_req=1 ttl=64 time=0.113 ms
64 bytes from MyUbuntuLaptop (192.168.1.101): icmp_req=2 ttl=64 time=0.222 ms
8.8.8.8
) von Google und private (RFC1918) Adressen. Da diese Adressen ziemlich privat sind , kennt Google diese nicht und wird es auch nie tun. Auch kein anderer öffentlicher DNS-Server wird dies tun. Sie müssen Ihren eigenen DNS-Server in Ihrem Netzwerk betreiben. Ist das eine Option? Ähnlich wie in diesem Tutorial .