일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 할슈타트 페리
- 소극적 공격
- PIM-SM
- 딥러닝
- 잘츠부르크 김치
- 체스키
- 오스트리아
- 김난도
- 프라하
- 체코
- 모차르트 동상
- 비엔나 여행
- 트렌드코리아
- 적극적 공격
- BGP
- 도서평
- 클라우드
- 초단파방송
- BGP AS_Path prepend
- 레지오젯
- html5
- init 6
- CK셔틀
- vi편집기
- 리눅스
- 잘츠부르크 여행
- 오스트리아 여행
- init 0
- 체스키크롬로프
- 무차별 공격
- Today
- Total
AndrewNA
BGP + OSPF Full mesh 실습 본문
Topology
Commend ( OSPF 및 기본 설정 생략 )
R1(config)#router bgp 100
R1(config-router)#neighbor 10.1.12.2 remote-as 200 // next-hop remote-as 200
R1(config-router)#network 1.1.1.0 mask 255.255.255.0 // 자신 ip 광고
R2(config)#router bgp 200
R2(config-router)#neighbor 10.1.12.1 remote-as 100 // eBGP
R2(config-router)#neighbor 4.4.4.4 remote-as 200 // iBGP 루프백 ID를 주어 장애방지
R2(config-router)#neighbor 4.4.4.4 update-source lo0 // 루프백이기 때문에 매핑해줌(인터페이스로 잡으면 필요x)
R2(config-router)#neighbor 4.4.4.4 next-hop-self // eBGP 쪽에서 해줌
R2(config-router)#neighbor 3.3.3.3 remote-as 200
R2(config-router)#neighbor 3.3.3.3 update-source lo0
R2(config-router)#neighbor 3.3.3.3 next-hop-self
R3(config)#router bgp 200
R3(config-router)#neighbor 2.2.2.2 remote-as 200
R3(config-router)#neighbor 4.4.4.4 update-source lo0
R3(config-router)#neighbor 4.4.4.4 remote-as 200
R3(config-router)#neighbor 2.2.2.2 update-source lo0
R4(config)#router bgp 200
R4(config-router)#neighbor 10.1.45.5 remote-as 300 // eBGP
R4(config-router)#neighbor 2.2.2.2 remote-as 200 // iBGP
R4(config-router)#neighbor 2.2.2.2 update-source lo0
R4(config-router)#neighbor 2.2.2.2 next-hop-self
R4(config-router)#neighbor 3.3.3.3 remote-as 200
R4(config-router)#neighbor 3.3.3.3 update-source lo0
R4(config-router)#neighbor 3.3.3.3 next-hop-self
R5(config)#router bgp 300
R5(config-router)#neighbor 10.1.45.4 remote-as 200 // eBGP
R5(config-router)#network 5.5.5.0 mask 255.255.255.0
Check
'■ Communications > ↘ Cisco GNS' 카테고리의 다른 글
BGP multihop 실습 (0) | 2019.04.11 |
---|---|
BGP + OSPF + EIGRP Full mesh 실습 (0) | 2019.04.11 |
OSPF 기본 실습 (0) | 2019.04.11 |
Static Routing 가상 IP를 이용한 부하 분산 (0) | 2019.04.11 |
Static Routing 이론 및 실습 (0) | 2019.04.11 |