RIP 구성
R1~5(config)#router rip
R1~5(config-router)#version 2
R1~5(config-router)#no auto-summary
R1~5(config-router)#network 10.0.0.0
확인
C:\\>ping 10.1.2.10
Pinging 10.1.2.10 with 32 bytes of data:
Request timed out.
Reply from 10.1.2.10: bytes=32 time=1ms TTL=125
Reply from 10.1.2.10: bytes=32 time<1ms TTL=125
Reply from 10.1.2.10: bytes=32 time<1ms TTL=125
Default route injection 기본 경로 주입
인터넷으로 나가는 모든 트래픽에 대해 기본 정적 경로가 있다고 할 때 모든 트래픽에 대해
기본 정적 경로 전부를 하나하나 구성하지않기위해선 인터넷으로 나가기 직전 마지막으로 연결된
라우터에 기본정적 경로를 구성한 뒤 이를 통보하고 rip로 주입하는 방법이 있다
인터넷으로가는 정적 경로 추가
R4(config)#ip route 0.0.0.0 0.0.0.0 203.0.113.2
모든 라우터에 위와같이 추가해도되지만 작업을 용이하기위해 R4의 RIP에 주입한다.
R4(config)#router rip
R4(config-router)#default-information originate
결과
R1#sh ip route
~
~
R* 0.0.0.0/0 [120/2] via 10.0.3.2, 00:00:13, FastEthernet1/1
passive interface
R4와 연결된 인터넷 ip 203.0.113.2 는 서로 연결되었지만 내부의 정보를 교환하지않기위해
수동인터페이스를 설정해준다.
<aside> 💡 내부게이트웨이 라우팅 프로토콜인 RIP,EIGRP,OSPF는 라우터는 직접 연결된 링크 상의 다른 장치들을 탐색하게 되면 서로 Hello패킷을 전송하고 수신대기를하며 대등접속을 하게되고 인접성 형성해 서로 라우팅 업데이를 교환한다.
</aside>
R4(config)#router rip
R4(config-router)#passive-interface f1/1
R4(config-router)#network 203.0.113.0
R1#sh ip route
~
~
R 203.0.113.0/24 [120/2] via 10.0.3.2, 00:00:12, FastEthernet1/1
EIGRP 구성
모든 라우터에 EIGRP구성한다. 이때 AS 값은 같은AS끼리 EIGRP를 멀티캐스트를통한 통신하기위한
그룹 값이라 생각하자
R1~5(config)#router eigrp 100
R1~5(config-router)#network 10.0.0.0
확인
R1#sh ip eigrp neighbors
EIGRP-IPv4 Neighbors for AS(100)
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
0 10.0.0.2 Fa0/0 11 00:00:20 21 126 0 10
1 10.0.3.2 Fa1/1 11 00:00:10 44 264 0 6
R1#sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
~
~
Gateway of last resort is 10.0.3.2 to network 0.0.0.0
10.0.0.0/8 is variably subnetted, 12 subnets, 2 masks
C 10.0.0.0/24 is directly connected, FastEthernet0/0
L 10.0.0.1/32 is directly connected, FastEthernet0/0
C 10.0.1.0/24 is directly connected, FastEthernet0/1
L 10.0.1.1/32 is directly connected, FastEthernet0/1
C 10.0.2.0/24 is directly connected, FastEthernet1/0
L 10.0.2.1/32 is directly connected, FastEthernet1/0
C 10.0.3.0/24 is directly connected, FastEthernet1/1
L 10.0.3.1/32 is directly connected, FastEthernet1/1
D 10.1.0.0/24 [90/30720] via 10.0.0.2, 00:06:39, FastEthernet0/0
D 10.1.1.0/24 [90/33280] via 10.0.0.2, 00:06:21, FastEthernet0/0
D 10.1.2.0/24 [90/35840] via 10.0.0.2, 00:06:15, FastEthernet0/0
D 10.1.3.0/24 [90/261120] via 10.0.3.2, 00:06:09, FastEthernet1/1
R 203.0.113.0/24 [120/2] via 10.0.3.2, 00:00:22, FastEthernet1/1
R* 0.0.0.0/0 [120/2] via 10.0.3.2, 00:00:22, FastEthernet1/1
'Network' 카테고리의 다른 글
실장비 네트워크 구축 (1) | 2023.10.04 |
---|---|
22. 동적 경로 기본구성 (1) | 2023.10.04 |
21. 동적 경로 이론 (0) | 2023.10.04 |
20. 정적 경로 (0) | 2023.07.13 |
19. 라우터 로컬 경로 (0) | 2023.07.13 |