/etc/sysconfig/network-scripts/route-eth0에 다음 정적 경로 주소를 추가하여 영구적으로 만들 수 있습니까?

/etc/sysconfig/network-scripts/route-eth0에 다음 정적 경로 주소를 추가하여 영구적으로 만들 수 있습니까?

/etc/sysconfig/network-scripts/route-eth0파일을 영구적으로 만들기 위해 파일 에 추가해야 하는 다음 라우팅 주소 목록이 있습니다 .

route add -net 101.122.122.0 netmask 255.255.248.0 gw 10.0.0.10
route add -net 132.138.109.3 netmask 255.255.255.255 gw 10.0.0.10
route add -net 224.0.0.0 netmask 240.0.0.0 gw 10.0.0.10
route add -net 147.255.255.255 netmask 255.255.255.255 gw 10.0.0.10
route add -net 102.128.172.2 netmask 255.255.252.0 gw 10.0.0.10

Windows에 추가하는 것은 쉽습니다. -p명령에 옵션을 추가하여 route이를 영구적으로 만들면 됩니다 . 리눅스의 파일 형식은 무엇입니까?

고쳐 쓰다:

ifconfig명령은 인터페이스를 나열하지 않습니다 eth0.

ip route show다음과 같은 출력을 제공합니다.

default via 10.0.0.20 dev enp0s25  proto static  metric 100 
default via 10.0.0.20 dev wlp4s0  proto static  metric 600 
10.0.0.0/22 dev enp0s25  proto kernel  scope link  src 10.0.3.90  metric 100 
10.0.0.0/22 dev wlp4s0  proto kernel  scope link  src 10.0.3.59  metric 600 
192.22.132.0/24 dev virbr0  proto kernel  scope link  src 192.22.132.1 linkdown 

관련 정보