Last active
November 18, 2022 21:40
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
***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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.