Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luisenriquecorona/b0e6654331ac2792db5d45701c549321 to your computer and use it in GitHub Desktop.
Save luisenriquecorona/b0e6654331ac2792db5d45701c549321 to your computer and use it in GitHub Desktop.
Shows the network topology for the configuration that follows, which shows how to configure EIGRP over Frame Relay using dynamic mappings.
***Network Topology for EIGRP over Frame Relay Using Dynamic Mappings***
R1(config)#interface serial0/0/0
Enters interface configuration mode
R1(config-if)#ip address 192.168.1.101 255.255.255.0
Assigns the IP address and mask
R1(config-if)#encapsulation frame-relay
Enables Frame Relay on this interface
R1(config-if)#no shutdown
Enables the interface
R1(config-if)#exit
Returns to global configuration mode
R1(config)#router eigrp 100
Creates routing process 100
R1(config-router)#network 172.16.1.0 0.0.0.255
Advertises the network in EIGRP
R1(config-router)#network 192.168.1.0
Advertises the network in EIGRP
@luisenriquecorona
Copy link
Author

NOTE: To deploy EIGRP over a physical interface using dynamic mappings—relying on Inverse ARP—no changes are needed to the basic EIGRP configuration.
NOTE: In EIGRP, split horizon is disabled by default on Frame Relay physical interfac- es.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment