ospf学习点滴

ospf学习点滴 
 1.为了避免loopback口被ospf学习成32位掩码的主机地址,需要在loopback口下配置:ip ospf network point-to-point
2.ospf的认证:
2.1对于端口认证
明文认证:
interface Serial1/2
 ip ospf authentication                 --启动认证
 ip ospf authentication-key cisco       --设置明文认证密码
基于md5的认证:
interface Serial1/2
 ip ospf authentication message-digest  --启动md5认证
 ip ospf message-digest-key 1 md5 test  --设置key号为1,密码为test
2.2对于区域认证
明文认证:
router ospf 1
 area 0 authentication                  --启动区域认证
interface Serial1/2
 ip ospf authentication-key cisco       --对于端口设置明文认证密码
基于md5认证:
router ospf 1
 area 0 authentication message-digest   --启动区域md5认证
interface Serial1/2
 ip ospf message-digest-key 1 md5 test  --接口下设置md5密码,设置key号为1,密码为test

你可能感兴趣的:(ospf学习点滴)