当前位置:网站首页>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
边栏推荐
- Select the product attribute pop-up box to pop up the animation effect from the bottom
- MIPS uclibc cross compile ffmpeg, support g711a encoding and decoding
- Stockage et pratique des données en langage C (haut niveau)
- Outlier detection technology of time series data
- [Luogu p1971] rabbit and egg game (bipartite game)
- Talk about seven ways to realize asynchronous programming
- Causes and solutions of oom (memory overflow)
- 修改Jupyter Notebook文件路径
- Lm11 reconstruction of K-line and construction of timing trading strategy
- Kuboard无法发送邮件和钉钉告警问题解决
猜你喜欢
机器人技术创新与实践旧版本大纲
【Liunx】进程控制和父子进程
[semantic segmentation] - multi-scale attention
$refs:组件中获取元素对象或者子组件实例:
L'externalisation a duré trois ans.
Kuboard无法发送邮件和钉钉告警问题解决
1090: integer power (multi instance test)
Asynchronous components and suspend (in real development)
Abnova circulating tumor DNA whole blood isolation, genomic DNA extraction and analysis
异步组件和Suspense(真实开发中)
随机推荐
FullGC问题分析及解决办法总结
Deep learning Flower Book + machine learning watermelon book electronic version I found
Modify the jupyter notebook file path
Explain Bleu in machine translation task in detail
弹性布局(二)
LC interview question 02.07 Linked list intersection & lc142 Circular linked list II
【leetcode】1020. Number of enclaves
PostgreSQL source code (59) analysis of transaction ID allocation and overflow judgment methods
选择商品属性弹框从底部弹出动画效果
Fullgc problem analysis and solution summary
transform-origin属性详解
抽丝剥茧C语言(高阶)指针的进阶
聊聊异步编程的 7 种实现方式
记一个并发规则验证实现
普通测试年薪15w,测试开发年薪30w+,二者差距在哪?
Causes and solutions of oom (memory overflow)
Blue Bridge Cup Birthday candles (violence)
Jesd204b clock network
Precise space-time travel flow regulation system - ultra-high precision positioning system based on UWB
Release notes of JMeter version 5.5