bgp协议基础实验
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
南昌航空大学实验报告
课程名称:路由与交换技术实验名称:bgp协议基础实验
班级:110462 姓名:xxx 学号:110462xx
指导老师评定:签名:
实验5 bgp协议基础实验
一、实验目的
1.了解bgp协议的基本配置;
二、实验要求
1.详细阅读操作过程,认真完成必做实验,掌握实验要求掌握的内容。
2.课后认真完成实验报告
三、实验环境
3.1 资源准备
1.硬件:网络环境、
2.操作系统:windows平台
3.相关软件:gns3、telnet等
四、实验步骤与内容
4.1网络配置实验
4.1.1 创建BGP工程
安装并配置GNS3-0.8.6-all-in-one.exe,idle值可以使用0x60aa7e58或0x6103f1e0或自己获取。
创建一个名为“BGP”的工程完成本次实验,将创建的过程截图并写入实验报告。
4.1.2 实验拓扑构造
图1 实验拓扑
4.1.3 IP地址设置
请根据拓扑图自行完成IP地址设置。将你的设置写入实验报告。R1:
en
conf t
host R1
int e0/0
ip address 30.0.0.1 255.255.0.0
no shut
int s1/0
ip address 172.16.1.2 255.255.255.0
clock rate 560000
no shut
end
R2:en
conf t
host r2
int e0/1
ip address 20.0.0.2 255.0.0.0
no shut
Int s1/0
Ip address 172.16.1.1 255.255.255.0 no shut
Int s1/1
Ip address 10.2.1.2 255.255.255.0 clock rate 5600
no shut
end
R3:
en
conf t
host R3
Int s1/0
Ip address 10.2.1.1 255.255.255.0 no shut
Int e0/0
Ip address 10.1.1.1 255.255.255.0 no shut
end
R4:en
conf t
host R4
int e0/0
ip address 40.0.0.1 255.0.0.0
no shut
Int e0/1
Ip address 10.1.1.2 255.255.255.0
no shut
Int e0/0
Ip address 192.168.1.2 255.255.255.0 no shut
end
R5:
en
conf t
host R5
int e0/1
ip address 192.168.10.1 255.255.255.0 no shut
int e0/0
ip address 192.168.1.1 255.255.255.0 no shut
end
4.1.4 RIP设置
请根据所学自行完成AS200中RIPv2协议的配置,将你的设置写入实验报告R4:
en
conf t
router rip
version 2
network 192.168.1.0
network 10.1.1.0
network 40.0.0.0
end
debug ip rip
R5:
en
conf t
router rip
version 2
network 192.168.1.0
network 192.168.10.0
end
debug ip rip
4.1.5 OSPF设置
请根据所学自行完成AS100中OSPF协议的配置,将你的设置写入实验报告。R1:
en
conf t
router ospf 1
router-id 1.1.1.1
network 30.0.0.0 0.0.255.255 area 1
network 172.16.1.0 0.0.0.255 area 0
network 1.1.1.1 0.0.0.0 area 1
end
debug ip ospf packet
copy run start
R2:
en
conf t
router ospf 1
router-id 2.2.2.2
network 172.16.1.0 0.0.0.255 area 0 network 20.0.0.0 0.255.255.255 area 0 network 10.2.1.0 0.0.0.255 area 2 network 2.2.2.2 0.0.0.0 area 0
end
debug ip ospf packet
copy run start