So ändern Sie lokale Netzwerkinformationen (IP, Netzmaske, Broadcast) mit ifconfig

So ändern Sie lokale Netzwerkinformationen (IP, Netzmaske, Broadcast) mit ifconfig

Ich folge den Anweisungen im Buch Linux Basics for Hackers (No Starch Press, 2018)unter Verwendung von Kali Linux (2019.1a) mit VirtualBox und wenn ich meine Netzwerkinformationen ändere (Kapitel 3), kann ich nicht mehr auf das Internet zugreifen.

Folgendes habe ich getan:

$ ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.2.15  netmask 255.255.255.0  broadcast 10.0.2.255
        inet6 fe80::a00:27ff:fe77:94b  prefixlen 64  scopeid 0x20<link>
        ether 08:00:27:77:09:4b  txqueuelen 1000  (Ethernet)
        RX packets 15771  bytes 18253966 (17.4 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 4016  bytes 243513 (237.8 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 20  bytes 1116 (1.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 20  bytes 1116 (1.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

$ ping google.com
PING google.com (172.217.25.142) 56(84) bytes of data.
64 bytes from syd15s03-in-f14.1e100.net (172.217.25.142): icmp_seq=1 ttl=63 time=23.10 ms
64 bytes from syd15s03-in-f14.1e100.net (172.217.25.142): icmp_seq=2 ttl=63 time=23.4 ms
^C
--- google.com ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1ms
rtt min/avg/max/mdev = 23.351/23.655/23.959/0.304 ms
$ # Change IP from 10.0.2.15 to 10.0.2.21
$ ifconfig eth0 10.0.2.21 netmask 255.255.255.0 broadcast 10.0.2.255
$ ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.2.21  netmask 255.255.255.0  broadcast 10.0.2.255
        inet6 fe80::a00:27ff:fe77:94b  prefixlen 64  scopeid 0x20<link>
        ether 08:00:27:77:09:4b  txqueuelen 1000  (Ethernet)
        RX packets 230432  bytes 263807948 (251.5 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 58741  bytes 3535449 (3.3 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 20  bytes 1116 (1.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 20  bytes 1116 (1.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

$ ping google.com
ping: google.com: Name or service not known

Ich habe die Befehle im Buch noch einmal überprüft und alles, was ich getan habe, scheint zu stimmen.

Wie kann ich meine Netzwerkinformationen ändern, ohne meinen Netzwerk-/Internetzugang zu unterbrechen?

Antwort1

Versuchen Sie dies nicht in einer Remotesitzung!!!

Wenn Sie die IP-Adresse von eth0 ändern, das auch die Schnittstelle
für Ihr ist default route, müssen Sie diese ebenfalls ändern.

Etwas wie das:

# ifconfig eth0 down
# route del default
# ifconfig eth0 10.0.2.21 netmask 255.255.255.0 broadcast 10.0.2.255
# route add default eth0

Dies ist aus dem Gedächtnis, daher sollten Sie die Manpages konsultieren

verwandte Informationen