View
CentOS static route 설정
임시 설정 - 재부팅시 초기화
# route add -host 아이피 netmask 넷마스크 dev 장치명
# route add -net 아이피대역대 netmask 넷마스크 dev 장치명
host 일 때는 특정 ip
net 일 때는 특정 ip 대역대
로 가는 트래픽을 지정한 장치로 내보냄
예)
# route add -host 1.1.1.1 netmask 255.255.255.0 dev eth0
# route add -net 2.2.2.0 netmask 255.255.255.0 dev eth0
# route add -net 2.2.2.0 netmask 255.255.255.0 gw 192.168.0.1 dev eth0
게이트웨이 추가, 제거
# route add default gw 192.168.0.1 dev eth0
# route del default gw 192.168.0.1 dev eth0
영구 설정
# vi /etc/sysconfig/network-scripts/route-장치명
없으면 생성
내용
ADDRESS0=아이피 대역대
NETMASK0=넷마스크
GATEWAY0=게이트웨이
ADDRESS1=아이피 대역대
NETMASK1=넷마스크
GATEWAY1=게이트웨이
# service network restart
확인
# route
반응형
'OS > CentOS' 카테고리의 다른 글
CentOS static ip 설정 (0) | 2016.03.23 |
---|---|
CentOS SSH 설정 (0) | 2016.03.22 |
CentOS 에서 Daum 저장소 사용 (0) | 2014.10.16 |
CentOS / Fedora 에서 GParted 설치 안될때 (0) | 2014.10.15 |
yum update 할때 "yum-complete-transaction" (0) | 2014.10.10 |
reply