0%
OSPF基本命令
1 2 3 4 5 6 7 8 9 10 11
| ospf 1 router-id 1.1.1.1 # 开启ospf.进程号为1手动配置Router ID area 0/0.0.0.0 # 配置区域 network 192.168.1.0 0.0.0.255 # 宣告网络使用反掩码来匹配(255.255.255.255-掩码) display ospf peer [brief] # 显示OSPF邻居信息 ospf timer hello 10 # 修改hello包发送间隔 ospf timer dead 40 # 修改hello包超时时间 display ospf interface g0/0/0 # 显示OSPF接口信息 ospf dr-priority 100 # 修改OSPF接口优先级 ospf cost 10 # 修改开销,范围1~65535,默认为1 bandwidth-reference 100 # 调整带宽参考值,默认为100Mbps 需要在整个OSPF网络中统一调整 reset ospf process # 重启OSPF进程
|
OSPF 认证命令
1 2 3 4 5 6 7 8
| int g0/0/0 ospf authentication-mode md5 1 cipher password # 配置接口认证 ospf 1 area 0 authentication-mode md5 1 cipher password # 配置区域认证 # 2个同时配置 接口优先
|
OSPF缺省理由
1 2
| ip router-static 0.0.0.0 0.0.0.0 default-router-advertise [always] # 发布缺省路由 always参数: 强制发布,不需要路由表事先存在缺省路由
|