当前位置:网站首页>BGP experiment (1)
BGP experiment (1)
2022-07-07 07:29:00 【CNS2900761382】
experiment :

One . Topology

Two .1 To configure IP Address
[r1-LoopBack0]ip add 1.1.1.1 32
[r1-GigabitEthernet0/0/2]ip add 11.1.1.1 24
[r1-GigabitEthernet0/0/1]ip add 12.1.1.1 24
[r2-LoopBack0]ip add 1.1.1.2 32
[r2-GigabitEthernet0/0/2]ip add 22.1.1.1 24
[r2-GigabitEthernet0/0/0]ip add 12.1.1.2 24
[r2-GigabitEthernet0/0/1]ip add 23.1.1.1 24
[r3-GigabitEthernet0/0/0]ip add 23.1.1.2 24
[r3-LoopBack0]ip add 1.1.1.3 32
[r3-GigabitEthernet0/0/2]ip add 33.1.1.1 24
[r3-GigabitEthernet0/0/1]ip add 34.1.1.1 24
[r4-GigabitEthernet0/0/0]ip add 34.1.1.2 24
[r4-LoopBack0]ip add 1.1.1.4 32
[r4-GigabitEthernet0/0/2]ip add 44.1.1.1 24
[r4-GigabitEthernet0/0/1]ip add 45.1.1.1 24
[r4-GigabitEthernet4/0/0]ip add 54.1.1.1 24
[r5-GigabitEthernet0/0/0]ip add 45.1.1.2 24
[r5-GigabitEthernet0/0/1]ip add 54.1.1.2 24
[r5-LoopBack0]ip add 5.5.5.5 24
[r5-GigabitEthernet0/0/2]ip add 55.1.1.1 24
2.AS2 Internal enable OSPF agreement
[r2]ospf 1 router-id 2.2.2.2
[r2-ospf-1-area-0.0.0.0]network 1.1.1.2 0.0.0.0
[r2-ospf-1-area-0.0.0.0]network 22.1.1.1 0.0.0.0
[[r2-ospf-1-area-0.0.0.0]network 23.1.1.1 0.0.0.0
[r3]ospf 1 router-id 3.3.3.3
[r3-ospf-1-area-0.0.0.0]network 23.1.1.2 0.0.0.0
[r3-ospf-1-area-0.0.0.0]network 34.1.1.1 0.0.0.0
[r3-ospf-1-area-0.0.0.0]network 1.1.1.3 0.0.0.0
[r3-ospf-1-area-0.0.0.0]network 33.1.1.1 0.0.0.0
[r4]ospf 1
[r4]ospf 1 router-id 4.4.4.4
[r4-ospf-1-area-0.0.0.0]network 34.1.1.2 0.0.0.0
[r4-ospf-1-area-0.0.0.0]network 1.1.1.4 0.0.0.0
[r4-ospf-1-area-0.0.0.0]network 44.1.1.1 0.0.0.0
3. Conduct BGP To configure
[r1]bgp 1
[r1-bgp]router-id 1.1.1.1
[r1-bgp]peer 12.1.1.2 as-number 2
[r2]bgp 2
[r2-bgp]router-id 2.2.2.2
[r2-bgp]peer 12.1.1.1 as-number 1
Build a neighborhood
[r3]bgp 2
[r3-bgp]router-id 3.3.3.3
[r3-bgp]peer 1.1.1.2 as-number 2
[r3-bgp]peer 1.1.1.4 as-number 2
[r3-bgp]peer 1.1.1.4 connect-interface l0
[r4]bgp 2
[r4-bgp]router-id 4.4.4.4
[r4-bgp]peer 1.1.1.3 as-number 2
[r4-bgp]peer 1.1.1.3 connect-interface l0
because BGP The prerequisite for building a neighbor is data level interoperability , therefore , You need to be in R4 Write the static route pointing to the opposite end loopback
[r4]ip route-static 5.5.5.0 24 45.1.1.2
[r4]bgp 2
[r4-bgp]peer 5.5.5.5 as-number 3
[r4-bgp]peer 5.5.5.5 connect-interface l0
[r4-bgp]peer 5.5.5.5 ebgp-max-hop
because BGP The prerequisite for building a neighbor is data level interoperability , therefore , You need to be in R5 Write the static route pointing to the opposite end loopback
[r5]ip route-static 1.1.1.4 32 45.1.1.1
[r5]ip route-static 1.1.1.4 32 54.1.1.1
[r5]bgp 3
[r5-bgp]router-id 5.5.5.5
[r5-bgp]peer 1.1.1.4 as-number 2
[[r5-bgp]peer 1.1.1.4 connect-interface l0
[r5-bgp]peer 1.1.1.4 ebgp-max-hop 2
Check the neighborhood


4. The loops of each router are announced in their respective BGP in
[r1]bgp 1
[r1-bgp]net
[r1-bgp]network 11.1.1.0 24

because IGP The horizontal segmentation mechanism of ,IGP The route learned internally cannot be transmitted to the third router ,R2 and R4 We should also build neighbors , And because of AS-BY-AS Mechanism , The information transmitted internally will not change , Change the next hop when you need to configure delivery
[r2]bgp 2
[r2-bgp]peer 1.1.1.3 next-hop-local
[r2-bgp]peer 1.1.1.4 as-number 2
[r2-bgp]peer 1.1.1.4 connect-interface l0
[r2]bgp 2
[r2-bgp]peer 1.1.1.4 next-hop-local
[r4]bgp 2
[r4-bgp]peer 1.1.1.2 as-number 2
[r4-bgp]peer 1.1.1.2 connect-interface l0
[r4]bgp 2
[r4-bgp]peer 1.1.1.2 next-hop-local
[r4-bgp]peer 1.1.1.3 next-hop-local
[r5]bgp 3
[r5-bgp]network 55.1.1.0 24
test PC Communication between

边栏推荐
- Causes and solutions of oom (memory overflow)
- [Linux] process control and parent-child processes
- PostgreSQL source code (59) analysis of transaction ID allocation and overflow judgment methods
- Abnova immunohistochemical service solution
- Several important steps to light up the display
- 普通测试年薪15w,测试开发年薪30w+,二者差距在哪?
- $parent(获取父组件) 和 $root(获取根组件)
- OOM(内存溢出)造成原因及解决方案
- 抽丝剥茧C语言(高阶)指针的进阶
- Implementing data dictionary with JSP custom tag
猜你喜欢

一、Go知识查缺补漏+实战课程笔记 | 青训营笔记

L'étape avancée du pointeur de langage C (haut de gamme) pour l'enroulement des cocons

"Xiaodeng in operation and maintenance" meets the compliance requirements of gdpr

Tujia, muniao, meituan... Home stay summer war will start

Pass parent component to child component: props

Implementation of AVL tree

Lm11 reconstruction of K-line and construction of timing trading strategy

Reflection (II)

三、高质量编程与性能调优实战 青训营笔记

freeswitch拨打分机号源代码跟踪
随机推荐
Cloud backup project
sql中对集合进行非空校验
Kuboard can't send email and nail alarm problem is solved
抽絲剝繭C語言(高階)數據的儲存+練習
Software acceptance test
Fast quantitative, abbkine protein quantitative kit BCA method is coming!
toRefs API 与 toRef Api
95后CV工程师晒出工资单,狠补了这个,真香...
PostgreSQL source code (60) transaction system summary
js小练习----分时提醒问候、表单密码显示隐藏效果、文本框焦点事件、关闭广告
Stack Title: nesting depth of valid parentheses
Composition API premise
Non empty verification of collection in SQL
mips uclibc 交叉编译ffmpeg,支持 G711A 编解码
Wechat applet full stack development practice Chapter 3 Introduction and use of APIs commonly used in wechat applet development -- 3.9 introduction to network interface (IX) extending the request3 met
The currently released SKU (sales specification) information contains words that are suspected to have nothing to do with baby
Summary of customer value model (RFM) technology for data analysis
詳解機器翻譯任務中的BLEU
Communication of components
选择商品属性弹框从底部弹出动画效果