OSPF

Open Shortest Path First

Base Setup

enable
config t
interface {interface} {interface_#}
no shutdown
ip address {ip_address} {subnet}
router ospf 1
network {network_address} {wildcard} area {area_#}

Example

enable
config t
interface GigabitEthernet 0/0
no shutdown
ip address 10.8.1.1 255.255.255.248
router ospf 1
network 10.8.1.0 0.0.0.7 area 0

Add Authentication

MD5:

Documentation

Example:

Verification:

Output:

Verification Output

SHA-512:

Documentation

Example:

Verification:

Output:

Verification Output

Last updated