N's Story

BGP ORF 이론 및 실습 본문

■ Communications /↘ Cisco GNS

BGP ORF 이론 및 실습

AndrewNa 2019. 4. 30. 20:02
728x90
반응형

BGP ORF
BGP 라우터가 자신의 수신 필터링 리스트 정보를 BGP 피어로 전달하여 필터링 하는 기술로
CPU, 메모리, 링크 대역폭 등의 자원낭비를 줄일 수 있다.

 


Topology

 

 

Command

Router(config-router)#neighbor ip-address capability orf prefix-list { receive | send | both }

// ORF 활성화

=>R9에서 1.1.1.0/24, 2.2.2.0/24, 3.3.3.0/24 네트워크 정보를 거부하는 prefix-list 생성

=>R7과 R9에 ORF 설정

 

R9(config)#ip prefix-list 1 seq 5 deny 1.1.1.0/24

R9(config)#ip prefix-list 1 seq 10 deny 2.2.2.0/24

R9(config)#ip prefix-list 1 seq 15 deny 3.3.3.0/24

R9(config)#ip prefix-list 1 seq 20 permit 0.0.0.0/0 le 32

R9(config)#router bgp 65200

R9(config-router)#neighbor 7.7.7.7 prefix-list 1 in

R9(config-router)#neighbor 7.7.7.7 capability orf prefix-list send

 

R7(config)#router bgp 65200

R7(config-router)#neighbor 9.9.9.9 capability orf prefix-list receive

 

 

Check​​

R7이 R9로 전달하는 라우팅 정보 확인

728x90
반응형

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

BGP AS_Path prepend 실습  (0) 2019.05.01
BGP Maximum-Paths 이론 및 커맨드  (0) 2019.04.30
BGP AS_Path Access-list 이론 및 실습  (0) 2019.04.30
BGP LAB Attribute MED  (0) 2019.04.30
BGP MED 이론 및 실습  (0) 2019.04.30
Comments