N's Story

BGP Advertise-map 이론 및 실습 본문

■ Communications /↘ Cisco GNS

BGP Advertise-map 이론 및 실습

AndrewNa 2019. 5. 1. 22:35
728x90
반응형

BGP Advertise-map

Advertise-map 옵션을 통하여 요악한 네트워크의 전달을 일괄적으로 차단하지 않고, 특정 AS로만 전달되지 않게 할 수 있다.

 

 

Topology

 

 

Command

AS 300 번에서 요약된 정보가 들어오지 않게 한다.

 

R4(config)#ip as-path access-list 1 permit ^300$ // as 300만 허용

R4(config)#route-map advertise permit 10 // route-map 생성

R4(config-route-map)#match as-path 1 // as-path 1 매치

 

R4(config)#router bgp 200

R4(config-router)#aggregate-add 200.1.0.0 255.255.224.0 as-set advertise-map advertise

 

R4#clear ip bgp * soft

 

 

Check

AS400인 R9에서는 요약된 정보가 존재

 

그러나 AS300인 R5에서는 요약된 정보가 존재하지 않는다.

728x90
반응형

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

BGP Community 이론 및 실습  (0) 2019.05.01
BGP as-set 이론 및 실습  (0) 2019.05.01
BGP Suppress-map 이론 및 실습  (0) 2019.05.01
BGP EIGRP 실습 기본설정  (0) 2019.05.01
BGP AS_Path prepend 실습2  (0) 2019.05.01
Comments