
John V. answered 11/23/20
Cisco/Juniper/Microsoft Certified Network Plumber
Looking at the options the only one that seems to apply in any way to me is "authenticated"
OSPF supports 3 types of authentication
1) Null (no authenticaiton)
2) Simple password (unencrypted)
First setup simple authentication in the ospf area
router ospf 10
area 0 authentication
Second setup the md5 key for each interface in the area
interface Ethernet1/1
ip ospf authentication-key T3st123
interface Ethernet1/2
ip ospf authentication-key T3st456
3) MD5 (most secure)
First setup md5 authentication in the ospf area
router ospf 10
area 0 authentication message-digest
Second setup the md5 key for each interface in the area
interface Ethernet1/1
ip ospf message-digest-key 1 md5 Test123
!
interface Ethernet1/2
ip ospf message-digest-key 1 md5 Test456