Cisco Packet Tracer百度网盘免费下载
链接: https://pan.baidu.com/s/1BocS3KHAcouC78XA0zotAQ
提取码: rxbr介绍:CiscoPacketTracer是一款思科交换机模拟器程序软件,可以简称PT,用户通过该软件可以练习使用路伍搭由器,交换机,无线等腔岁拿来构建自己的网络或者雀慎建立网络拓扑结构,还可以支持学生和教师创建网络现象的模拟,帮助学生获得更好的学习体验。
路由重分发 以OSPF为例:命令:Router(config-router)#redistribute protocol(指明路竖敬由器要进行路由重分发的源路由协议) process-id(指明OSPF的进程ID) metric(可选参数,用来指定重分发的路由的度量值,默认的度量值是0) metric-type(指定重分发路由的类型,1或2两个值,1为E1,2为E2,默认为2) subnets(连羡纤茄子网一起宣告)router rip
redistribute ospf 100 metric 10 由OSPF派生的路由被重分发到RIP路由中,并具有值为10的跳数
router ospf 10
redistribute rip metric 200 subnets 由RIP派生兄察的路由被重分发到OSPF之中,作为类型2外部路由,并给定一个OSPF代价200在OSPF中通告一个永久默认路由Router(config)#router ospf 10
Router(config-router)#default-information originate always
1)单臂搭唯路由TOP:
router1 --------trunk ---------- switch 1 ----vlan2----pc1
|----vlan3 ----pc2
实验目的pc1和pc2能够互通,switch1为纯2层交换机
router1 config:
interface e0/0
no shutdown
interface e0/0.2
en dot vlan 2
ip address 12.1.1.1 255.255.255.0
interface e0/0.3
en dot vlan 3
ip address 13.1.1.1 255.255.255.0
switch 1
vlan 2
vlan 3
interface f0/1
sw mode acces
sw acc vlan 2
interface f0/2
sw mode access
sw acc vlan 3
interface f0/3
sw trun en dot1q
sw mode trunk
PC1: 12.1.1.2 255.255.255.0网关12.1.1.1
PC2: 13.1.1.2 255.255.255.0网关13.1.1.1
2)静态路银和由
router1 ------12.1.1.1-------router2 ------13.1.1.1----- router3 (loopback 3.3.3.3)
实锋枝盯验效果:router1 能ping通router3的3.3.3.3地址
router1
interface e0/0
ip address 12.1.1.1 255.255.255.0
no shutdown
ip route 0.0.0.0 0.0.0.0 12.1.1.2
router2
interface e0/0
ip address 12.1.1.2 255.255.255.0
no shutdown
interface e0/1
ip address 13.1.1.1 255.255.255.0
no shutdown
ip route 3.3.3.0 255.255.255.0 13.1.1.2
router3
interface e0/0
ip address 13.1.1.2 255.255.255.0
no shutdown
interface lo 0
ip address 3.3.3.3 255.255.255.0
ip route 0.0.0.0 0.0.0.0 13.1.1.1
3)动态路由
router1 ------12.1.1.1-------router2 ------13.1.1.1----- router3 (loopback 3.3.3.3)
实验效果:router1 能ping通router3的3.3.3.3地址
router1
interface e0/0
ip address 12.1.1.1 255.255.255.0
no shutdown
router rip
vers 2
no au
network 12.0.0.0
router2
interface e0/0
ip address 12.1.1.2 255.255.255.0
no shutdown
interface e0/1
ip address 13.1.1.1 255.255.255.0
no shutdown
router rip
vers 2
no au
network 12.0.0.0
network 13.0.0.0
router3
interface e0/0
ip address 13.1.1.2 255.255.255.0
no shutdown
interface lo 0
ip address 3.3.3.3 255.255.255.0
router rip
vers 2
no au
network 13.0.0.0
network 3.0.0.0
查看的命令:
show ip route
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)