새로 설치된 Debian 8 상자에 이상한 문제가 발생했습니다. 기본 정적 경로에 0.0.0.0 대상 경로가 없습니다.
$ sudo route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 172.18.224.1 255.0.0.0 UG 0 0 0 eth0
172.16.0.0 172.18.224.1 255.240.0.0 UG 0 0 0 eth0
172.18.224.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.0.0 172.18.224.1 255.255.0.0 UG 0 0 0 eth0
따라서 이 설정으로는 인터넷에 연결할 수 없습니다.
인터페이스 구성 파일을 확인했는데 여기에는 아무런 문제가 없습니다.
$ sudo 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).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
/etc/network/interfaces.d/도 비어 있습니다.
$ sudo ls /etc/network/interfaces.d/
$
나는 길을 잃었다. 기본 정적 경로는 어디에 설정되어 있나요? 내가 가지고 있는 다른 모든 Linux 컴퓨터에서는 기본적으로 모든 것이 잘 작동합니다. 예를 들어, Linux Mint 상자에서 얻은 내용은 다음과 같습니다.
$ sudo route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 172.18.224.1 0.0.0.0 UG 0 0 0 eth0
10.0.0.0 172.18.224.1 255.0.0.0 UG 0 0 0 eth0
172.16.0.0 172.18.224.1 255.240.0.0 UG 0 0 0 eth0
172.18.224.0 0.0.0.0 255.255.255.0 U 1 0 0 eth0
192.168.0.0 172.18.224.1 255.255.0.0 UG 0 0 0 eth0
eth0 인터페이스 구성에 0.0.0.0 정적 경로를 추가할 수 있다는 것을 알고 있지만 이것이 존재하지 않는 이유를 알고 싶습니다.