본문 바로가기

네트워크

RIPv1 Dynamic Routing( RIPv1 동적 경로 ) 설정

먼저 process를 킨다

Router(config)#router process(rip,ospf 등등..)

 

Dynamic Routing Protocol : RIP

 

en

show ip route connected

C x.x.x.x

C y.y.y.y

conf t

router rip

    network x.x.x.x

    network y.y.y.y

end

show run

show ip route

 

 

 

 

--------------------------------------------------------------------------------

R1(config)#router rip

R1(config-router)#network 192.168.1.0

R1(config-router)#network 192.168.2.0

R1(config-router)#show ip route

--------------------------------------------------------------------------------

R2(config)#router rip

R2(config-router)#network 192.168.2.0

R2(config-router)#network 192.168.3.0

R2(config-router)#network 192.168.4.0

--------------------------------------------------------------------------------

R3(config)#router rip

R3(config-router)#network 192.168.4.0

R3(config-router)#network 192.168.5.0

R3(config-router)#network 192.168.6.0

--------------------------------------------------------------------------------

R4(config)#router rip

R4(config-router)#network 192.168.6.0

R4(config-router)#network 192.168.7.0

 

 

R1#show ip protocols

Routing Protocol is "rip"

Sending updates every 30 seconds(30초마다 업데이트), next due in 10 seconds

Invalid after 180 seconds(180초<30초*6번> 유효하지 않는시점), hold down 180,

flushed after 240(240초<30초*8번>삭제되는시점)

Outgoing update filter list for all interfaces is not set

Incoming update filter list for all interfaces is not set

Redistributing: rip (재분배)라우팅 프로토콜을 rip으로 변환해주겠다

Default version control: send version 1(버전1로 보낸다), receive any version(받을때는 버전아무거나)

Interface Send Recv Triggered RIP Key-chain

FastEthernet0/0 1 2 1

FastEthernet0/1 1 2 1

Automatic network summarization is in effect (자동 썸머리 :자동으로 네트워크를 합친다)

Maximum path: 4 (metric 값이 동일할 경우, 최대 4개의 경로가 올라감)

Routing for Networks:

192.168.1.0

192.168.2.0

Passive Interface(s):(rip 정보를 차단하는 인터페이스)

Routing Information Sources:(게이트웨이)

Gateway Distance Last Update(RIP정보를 전달하는 게이트웨이)

192.168.2.253 120 00:00:14

Distance: (default is 120)

R1#

 fa0/0-------------networkA [120/10]

 fa0/1-------------networkA [120/5]

 metric값 낮은게 올라감

 

Dynamic Routing protocol은 활성화 되어있는 모든 인터페이스로 라우팅 정보를 전달한다.

RIP UDP 520 port

 

fa0/1로 전달되는 rip정보:

fa0/0로 전달되는 rip정보:

192.168.1.0빼고 전부 전달 (내것 빼고 전달)

-Split Horizon 정책( 하나의 인터페이스에 보내고 받는 정보 중복하지 않는다)

'네트워크' 카테고리의 다른 글

RIPv2 Dynamic Routing( RIPv2 동적 경로 ) 설정 1  (0) 2021.04.27
passive-interface  (0) 2021.04.27
다양한 Routing Protocol2  (0) 2021.04.27
다양한 Routing Protocol 1  (0) 2021.04.27
Default Static Route(디폴트 정적 경로)  (0) 2021.04.27