route 경로 추가
※ Default Gateway가 eth0 이고 특정 IP에 대하여 eth1 을 통하여 routing 처리 1. 임시성 적용 및 테스트시 (재부팅시 설정 삭제됨) ※ Network 단위 설정시 route add -net 172.27.0.0/24 gw 172.27.0.1 dev eth1 ※ Host 단위 설정시 route add -host 172.27.0.30 gw 172.27.0.1 dev eth1 ※ Default Gateway 설정시 route add default gw 172.27.0.1 eth1 2. 시스템 부팅시 적용되도록 설정 [root@TEST01 ~]#vi /etc/sysconfig/network-scripts/route-eth1 172.27.0.0/24 via 172.27.0.1 #net..
System Story/CentOS 5,6
2013. 11. 10. 20:40