ubuntu 설정 정적 경로 및 재 부팅 적용

926 단어 Linuxroute
첫 번 째 방법:route 명령 사용(임시 경로 추가)
호스트 에 추 가 된 경로
# route add -host 192.168.1.123 dev eth0
# route add -host 192.168.1.123 gw 192.168.1.1

네트워크 에 추 가 된 경로
# route add -net 192.168.1.123 netmask 255.255.255.0 eth0
# route add -net 192.168.1.123 netmask 255.255.255.0 gw 192.168.1.1
# route add -net 192.168.1.123 netmask 255.255.255.0 gw 192.168.1.1 eth1
# route add -net 192.168.1.0/24 eth1

기본 게 이 트 웨 이 추가
# route add default gw 192.168.1.1

경로 삭제
# route del -host 192.168.1.11 dev eth0
# route del -net 192.168.1.123 netmask 255.255.255.0

 
 
두 번 째 방법:수정/etc/rc.local
 
수정/etc/rc.local,다만 주의해 야 할 것 은"exit 0"뒤에 쓰 지 마 세 요.
vi /etc/rc.local
route add default gw 192.168.1.1 metric 100

 
 
더 많은 방법 은 원문 을 보십시오.https://blog.51cto.com/solin/1900865

좋은 웹페이지 즐겨찾기