기본 경로를 삭제/추가할 수 없습니다.

기본 경로를 삭제/추가할 수 없습니다.

문자 메시지를 보내기 위해 Huawei 스틱을 연결하고 Wi-Fi를 통해 Raspi를 연결했습니다. 불행하게도 이렇게 하면 라우팅이 다음과 같이 변경됩니다.

pi@raspberrypi:/opt/pi/printer $ route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         hi.link         0.0.0.0         UG    0      0        0 eth1
default         hi.link         0.0.0.0         UG    204    0        0 eth1
default         10.0.2.1        0.0.0.0         UG    303    0        0 wlan0
10.0.2.0        *               255.255.255.0   U     303    0        0 wlan0
192.168.8.0     *               255.255.255.0   U     204    0        0 eth1

해당 경로를 제거하는 것이 쉬울 것이라고 추측할 수 있지만 작동하지 않습니다.

pi@raspberrypi:/opt/pi/printer $ ping hi.link
PING hi.link (192.168.8.1) 56(84) bytes of data.
64 bytes from hi.link (192.168.8.1): icmp_seq=1 ttl=64 time=1.05 ms
pi@raspberrypi:/opt/pi/printer $ route del default via  192.168.8.0
# does NOT work, displays the usage howto

추가 경로를 추가해야만 이 기능을 구현할 수 있습니다.

pi@raspberrypi:/opt/pi/printer $ route add default gw 10.0.2.1 wlan0

질문: Huawei 스틱 삽입 시 hi.link 경로가 생성되지 않도록 하는 방법 이 경로를 삭제하는 방법

매우 감사합니다!

답변1

다음 route명령을 사용하십시오.

route del default gw  192.168.8.0 dev eth1

또는 ip가능한 경우 더 나은 명령:

ip route del default via 192.168.8.0 dev eth1

이 명령은 일반적 으로 인쇄에 사용되는 것과 동일한 구문을 허용하므로 ip사용하기가 더 쉽습니다 .adddelshow

관련 정보