/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. Linux용 파일 형식은 무엇입니까?

업데이트:

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 

관련 정보