码迷,mamicode.com
首页 > 其他好文 > 详细

思科ospf实验-适合初学者

时间:2018-01-28 14:41:24      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:优先级   route   区域   ext   work   out   conf   end   cto   

技术分享图片
conf t
int f0/0
ip ospf priority 2 /改接口的优先级用来改变DR或者BDR
exit
clear ip ospf process? yes /改完接口的优先级必须要清理ospf的进程 必须要做的
R1
conf t
int lo 0 /router ID,环回接口
ip add 1.1.1.1 255.255.255.255
exit
int f0/1
ip add 172.16.20.1 255.255.255.0
exit
router ospf 100
network 1.1.1.1 0.0.0.0 area 0 /router ID,反掩码,区域
network 172.16.20.1 0.0.0.0 area 0
end
write
R2
conf t
int lo 0
ip add 2.2.2.2 255.255.255.255
exit
int f0/0
ip add 172.16.20.2 255.255.255.0
exit
int f0/1
ip add 172.16.30.1 255.255.255.0
exit
router ospf 100
network 2.2.2.2 0.0.0.0 areao
network 172.16.20.2 0.0.0.0 area 0
network 172.16.30.1 0.0.0.0 area 1
end
write
R3
conf t
int lo 0
ip add 3.3.3.3 255.255.255.255
exit
int f0/0
ip add 172.16.30.2
exit
router ospf 101
network 3.3.3.3 0.0.0.0 area 1
network 172.16.30.2 0.0.0.0 area 1
end
write
验证:R1 ping通3.3.3.3,也可以ping通172.16.30.2

思科ospf实验-适合初学者

标签:优先级   route   区域   ext   work   out   conf   end   cto   

原文地址:http://blog.51cto.com/tudoubowen10/2065972

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!