Site icon eConfigs

Passive Interface

Overview:

A passive interface prevents sending OSPF messages out interfaces that are not connected to another OSPF router.

 

Study Notes:

OSPF

config t
    router ospf 1 
        passive-interface FastEthernet 0/1
    --or--
    interface FastEthernet 0/1
        ip ospf passive-interface

EIGRP

config t
    router eigrp 20
        passive-interface FastEthernet 0/1
    --or--
    interface FastEthernet 0/1
        ip passive-interface eigrp 20

OSPF

config t
    router ospf 1
        passive-interface default
        no passive-interface FastEthernet 0/0

EIGRP

config t
    router eigrp 20
        passive-interface default
        no passive-interface FastEthernet 0/0

 

Links:

https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/iproute_pi/configuration/xe-3s/iri-xe-3s-book/iri-default-passive-interface.html

https://www.cisco.com/c/m/en_us/techdoc/dc/reference/cli/n5k/commands/ip-passive-interface-eigrp.html

Exit mobile version