본문 바로가기
OS-OE Knowledge/Linux-Unix KB

CMD - route

by 스쳐가는인연 2010. 6. 21.

1. 기 능

IP routing table 을 보여준다.

2. 문 법

route add [xnet|-host] target [netmask <Nm>] [gw Gw] dev <If>
route del [-net|-host] target [gw Gw] [netmask Nw] [[dev] If]
route add default gw <Gw> dev <If>
IP routing table 정보를 보거나, routing table을 처리한다. 옵션 add나 del을 사용해서 라우팅 테이블을 수정하거나 옵션 없이 사용하면 라우팅 테이블의 현재 내용을 볼 수 있다.

3. 옵션

del : route 삭제
add : route 추가
target : network 또는 host의 목적지
-e : netstat format으로 routing table을 출력한다.

4. 사용방법 및 정보

[root@sense ~]# route
Kernel IP routing table
Destination     Gateway         Genmask                   Flags   Metric            Ref      Use     Iface
192.168.1.0        *                255.255.255.0           U        0                    0         0         eth0
169.254.0.0        *                255.255.0.0              U        0                    0         0         eth0
Default        192.168.1.1     0.0.0.0               UG       0                    0         0         eth0

각 필드에 대한 설명이다.
Destination : network 또는 host의 목적지를 말한다.
Gateway : gateway주소나 ‘*’ 으로 표시된다.
Genmask : 목적지의 netmask가 지정된다.
Flags : U (route is up)
           H (target is a host)
           G (use gateway)
           R (reinstate route for dynamic routing)
           D (dynamically installed by daemon or redirect)
           M (modified from routing daemon or redirect)
           A (installed by addconf)
           C (cache entry)
            ! (reject route)

Metric : 경로 설정의 기준값, 최소 경로를 best path로 하여 경로를 설정한다.
Ref : 라우트에서 참조하는 값 (리눅스 커널에서는 사용하지 않음)
Use : 라우트를 검사한 수 xF or xC 옵션을 이용하여 miss or hits 를 나타낼 수 있다.
Iface : 라우트에서 패킷을 보낼 interface

사용예제
[root@sense ~]# route add -net 192.168.1.0 netmask 255.255.255.0 dev eth0
192.168.1.x 네트워크의 라우트를 eth0에 추가한다.
[root@sense ~]# route add default gw 192.168.1.1
192.168.1.1 을 gateway로 추가한다.
[root@sense ~]# route add default gw 192.168.2.1 dev eth0 metric 1
192.168.2.1 을 gateway로 추가하되 metric을 다르게 준다.

출처 : http://target2u.blogspot.com/2007/01/route.html
반응형