HCIP---BGP实验2
一、实验要求
1.AS1存在两个环回,一个地址为192.168.1.0/24该地址不能在任何协议中宣告
AS3中存在两个环回,一个地址为192.168.2.0/24该地址不能在任何协议中宣告
最终要求这两个环回可以互相通讯;
AS1的另一个环回为10.1.1.0/24,As3的另一个环回为10.1.2.0/24
2.整个AS2的IP地址为172.16.0.0,请合理划分
3.AS间的骨干链路IP地址随意定制
4.使用BGP协议让整个网络所有设备的环回可以互相访问
5.减少路由条目数量,避免环路出现
二、拓扑图
三、IP地址划分
R1到R8 可以通GRE打通;R1 ,R2 和R7 ,R8之间的IP随意配置;规划IP地址不要跟着BGP走 ,在这里要跟着IGP走。
设备 | IP地址 |
---|---|
R1 | 环回:192.168.1.1 /24 ;10.1.1.1 /24 |
R1-R2 | g0/0/1 2.1.1.1 24 |
R2 | g0/0/0 2.1.1.2 24;环回:172.16.2.1 /24 |
R3 | 环回:172.16.3.1 /24 |
R4 | 环回:172.16.4.1 /24 |
R5 | 环回:172.16.5.1/24 |
R6 | 环回:172.16.6.1 /24 |
R7 | 环回:172.16.7.1 /24 |
R2 | g0/0/1 :172.16.0.1/30 ; g0/0/2:172.16.0.9 /30 |
R3 | g0/0/0:172.16.0.2 /30 ;g0/0/1:172.16.0.5 /30 |
R4 | g0/0/0:172.16.0.6/30 ; g0/0/2 :172.16.0.21 /30 |
R5 | g0/0/2:172.16.0.10 /30;g0/0/1:172.16.0.13 /30 |
R6 | g0/0/0:172.16.0.14 /30 ; g0/0/1 : 172.16.0.17 /30 |
R7 | g0/0/0 :172.16.0.18 /30 ; g0/0/2:172.16.0.22 /30;g0/0/1 :78.1.1.1 /24 |
R8 | g0/0/0:78.1.1.2 /24 ;环回:192.168.2.1 /24 10.1.2.1/24 |
四、IP地址 路由配置
R1:
[r1]int LoopBack 0
[r1-LoopBack0]ip add 192.168.1.1 24
[r1-LoopBack0]int l 1
[r1-LoopBack1]ip add 10.1.1.1 24
[r1-LoopBack1]int g0/0/1
[r1-GigabitEthernet0/0/1]ip add 2.1.1.1 24
R2:
[r2]int g0/0/0
[r2-GigabitEthernet0/0/0]ip add 2.1.1.2 24
[r2-GigabitEthernet0/0/0]int l 0
[r2-LoopBack0]ip add 172.16.2.1 24
R3:
[r3]int l 0
[r3-LoopBack0]ip add 172.16.3.1 24
R4:
[r4]int l 0
[r4-LoopBack0]ip add 172.16.4.1 24
R5:
[r5]int l 0
[r5-LoopBack0]ip add 172.16.5.1 24
R6:
[r6]interface l 0
[r6-LoopBack0]ip add 172.16.6.1 24
R7:
[r7]interface l 0
[r7-LoopBack0]ip add 172.16.7.1 24
环回已配好,接下来配置 2,3,4,5间的骨干
R2:
R3:
R4:
R5:
R6:
R7:
R8:
所有的IP已经配好!!!!
简单测试:
全通!!
地址配好过后接下来开始配IGP
R2:
[r2]ospf 1 router-id 2.2.2.2
[r2-ospf-1]area 0
[r2-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
R3:
[r3]ospf 1 router-id 3.3.3.3
[r3-ospf-1]area 0
[r3-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
R4:
[r4]ospf 1 router-id 4.4.4.4
[r4-ospf-1]area 0
[r4-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
R5:
[r5]ospf 1 router-id 5.5.5.5
[r5-ospf-1]area 0
[r5-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
R6:
[r6]ospf 1 router-id 6.6.6.6
[r6-ospf-1]area 0
[r6-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
R7:
[r7]ospf 1 router-id 7.7.7.7
[r7-ospf-1]area 0
[r7-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
简单测试一哈!!
邻居关系建好了,IGP配置完成
开始起BGP>>>
R1:
[r1]bgp 1
[r1-bgp]router-id 1.1.1.1
[r1-bgp]peer 12.1.1.2 as-number 2
R2:
[r2]bgp 64512
[r2-bgp]router-id 2.2.2.2
[r2-bgp]peer 172.16.3.1 as-number 64512
[r2-bgp]confederation id 2----如果有连接小S,告诉他对端连接了 小s
[r2-bgp]confederation peer-as 64513
[r2-bgp]peer 172.16.3.1 connect-interface LoopBack 0
[r2-bgp]peer 172.16.5.1 as-number 64513
[r2-bgp]peer 172.16.5.1 connect-interface LoopBack 0
[r2-bgp]peer 172.16.5.1 ebgp-max-hop 2---改TTL值
[r2-bgp]peer 12.1.1.1 as-number 1
R3:
[r3]bgp 64512
[r3-bgp]router-id 3.3.3.3
[r3-bgp]confederation id 2
[r3-bgp]peer 172.16.2.1 as-number 64512
[r3-bgp]peer 172.16.2.1 connect-interface LoopBack 0
[r3-bgp]peer 172.16.4.1 as-number 64512
[r3-bgp]peer 172.16.4.1 connect-interface l 0
R4:
[r4]bgp 64512
[r4-bgp]router-id 4.4.4.4
[r4-bgp]confederation id 2
[r4-bgp]confederation peer-as 64513
[r4-bgp]peer 172.16.3.1 as-number 64512
[r4-bgp]peer 172.16.3.1 connect-interface LoopBack 0
[r4-bgp]peer 172.16.7.1 as-number 64513
[r4-bgp]peer 172.16.7.1 connect-interface LoopBack 0
[r4-bgp]peer 172.16.7.1 ebgp-max-hop 2
R5:
[r5]bgp 64513
[r5-bgp]router-id 5.5.5.5
[r5-bgp]confederation id 2
[r5-bgp]confederation peer-as 64512
[r5-bgp]peer 172.16.2.1 as-number 64512
[r5-bgp]peer 172.16.2.1 connect-interface LoopBack 0
[r5-bgp]peer 172.16.2.1 ebgp-max-hop 2
[r5-bgp]peer 172.16.6.1 as-number 64513
[r5-bgp]peer 172.16.6.1 connect-interface LoopBack 0
R6:
[r6]bgp 64513
[r6-bgp]router-id 6.6.6.6
[r6-bgp]confederation id 2
[r6-bgp]peer 172.16.5.1 as-number 64513
[r6-bgp]peer 172.16.5.1 connect-interface LoopBack 0
[r6-bgp]peer 172.16.7.1 as-number 64513
[r6-bgp]peer 172.16.7.1 connect-interface LoopBack 0
R7:
[r7]bgp 64513
[r7-bgp]router-id 7.7.7.7
[r7-bgp]confederation id 2
[r7-bgp]confederation peer-as 64512
[r7-bgp]peer 172.16.6.1 as-number 64513
[r7-bgp]peer 172.16.6.1 connect-interface LoopBack 0
[r7-bgp]peer 172.16.4.1 as-number 64512
[r7-bgp]peer 172.16.4.1 connect-interface LoopBack 0
[r7-bgp]peer 172.16.4.1 ebgp-max-hop 2
[r7-bgp]peer 78.1.1.2 as-number 3
R8:
[r8]bgp 3
[r8-bgp]router-id 8.8.8.8
[r8-bgp]peer 78.1.1.1 as-number 2
检查一下配置
开始宣告路由:
R1:
[r1]bgp 1
[r1-bgp]network 10.1.1.0 24
R2:
[r2]bgp 64512
[r2-bgp]peer 172.16.3.1 next-hop-local
[r2-bgp]peer 172.16.5.1 next-hop-local
[r2]ip route-static 172.16.0.0 21 NULL 0
[r2]bgp 64512
[r2-bgp]network 172.16.0.0 21
R3:
[r3]bgp 64512
[r3-bgp]peer 172.16.2.1 reflect-client
R6:
[r6]bgp 64513
[r6-bgp]peer 172.16.5.1 reflect-client
R7:
[r7]bgp 64513
[r7-bgp]peer 172.16.4.1 next-hop-local
[r7-bgp]peer 172.16.6.1 next-hop-local
[r7]ip route-static 172.16.0.0 21 NULL 0
[r7]bgp 64513
[r7-bgp]network 172.16.0.0 21
R8:
[r8]bgp 3
[r8-bgp]network 10.1.2.0 24
R8查看路由表:
到此全部结束,接下来最后测试一通!!!!
五、测试
R1:
ping -a 10.1.1.1 172.16.6.1
ping -a 10.1.1.1 172.16.4.1
ping -a 10.1.1.1 172.16.2.1
-------------------------------------------
个性签名:今天做了别人不想做的事,明天你就做得到别人做不到的事,尝试你都不敢,你拿什么赢!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!