VirtualBox와 함께 Kali Linux(2019.1a)를 사용하여 책을 따라가고 있는데 Linux Basics for Hackers (No Starch Press, 2018)
네트워크 정보(3장)를 변경할 때 더 이상 인터넷에 액세스할 수 없습니다.
내가 한 일은 다음과 같습니다.
$ 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
나는 책에서 명령을 다시 확인했고 내가 한 모든 것이 일치하는 것 같습니다.
네트워크 정보를 변경하고 네트워크/인터넷 액세스를 중단하지 않으려면 어떻게 해야 합니까?
답변1
원격 세션에서는 시도하지 마세요!!!
의 인터페이스이기도 한 eth0의 IP 주소를 변경하는 경우 default route
해당 주소도 변경해야 합니다.
이 같은:
# 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
이것은 메모리에서 나온 것이므로 맨페이지를 참조하는 것이 좋습니다.