目录
一个路由器,有个G接口(1000M),有个F接口(100M),但算出来的cost值都是1(假如参考带宽为1000M的话,算出来的实际结果小于1,但是cost值任然按照1来计算),不公平!
————————————————————————————————————————————————————————
1G==1 000 000 000
100M==1 000 000 00
- ospf进程里修改:
-
- r1(config-router)#auto-cost reference-bandwidth 1000(接口带宽)
- -----此时cost值=1000M/接口带宽
-
- R4(config)#do sh ip ospf int f1/0 ——查看
————————————————————————————————————————————————————————
修改接口带宽,单位kb,默认计算1M=1000KB
- R4(config)#int f1/0
- R4(config-if)#bandwidth ?
- <1-10000000> Bandwidth in kilobits
- inherit Specify that bandwidth is inherited
- receive Specify receive-side bandwidth
-
- R4(config-if)#bandwidth 1000
修改后:
———————————————————————————————————————————————————————
- r1(config-router)#nei 1.1.1.1 priority 10----------对于1.1.1.1来说,我的优先级是10
-
- r1(config-if)#ip ospf priority 10-------我这个接口优先级是10