N's Story

BGP EIGRP 실습 기본설정 본문

■ Communications /↘ Cisco GNS

BGP EIGRP 실습 기본설정

AndrewNa 2019. 5. 1. 20:17
728x90
반응형

Topology

 

 

Command

-R1-
R1(config)#int loopback 0

R1(config-if)#ip address 1.1.1.1 255.255.255.0

 

R1(config)#int s1/1

R1(config-if)#ip address 10.1.12.1 255.255.255.0

R1(config-if)#no shut

 

R1(config)#router eigrp 100 // as number 100

R1(config-router)#network 1.1.1.1 0.0.0.255

R1(config-router)#network 10.1.12.0 0.0.0.255

 

-R2-

R2(config)#int loopback 0

R2(config-if)#ip address 2.2.2.2 255.255.255.0

 

R2(config)#int s1/1

R2(config-if)#ip address 10.1.12.2 255.255.255.0

R2(config-if)#no shut

 

R2(config)#int s1/2

R2(config-if)#ip address 10.1.23.2 255.255.255.0

R2(config-if)#no shut

 

R2(config)#router eigrp 100

R2(config-router)#network 2.2.2.0 0.0.0.255

R2(config-router)#network 10.1.12.0 0.0.0.255

R2(config-router)#network 10.1.23.0 0.0.0.255

 

-R3-

R3(config)#int loopback 0

R3(config-if)#ip address 3.3.3.3 255.255.255.0

 

R3(config)#int s1/2

R3(config-if)#ip address 10.1.23.3 255.255.255.0

R3(config-if)#no shut

 

R3(config)#router eigrp 100

R3(config-router)#network 3.3.3.3 0.0.0.255

R3(config-router)#network 10.1.23.0 0.0.0.255

 


Check

728x90
반응형

'■ Communications > ↘ Cisco GNS' 카테고리의 다른 글

BGP as-set 이론 및 실습  (0) 2019.05.01
BGP Suppress-map 이론 및 실습  (0) 2019.05.01
BGP AS_Path prepend 실습2  (0) 2019.05.01
BGP AS_Path prepend 실습  (0) 2019.05.01
BGP Maximum-Paths 이론 및 커맨드  (0) 2019.04.30
Comments