Advertisement
Guest User

Untitled

a guest
May 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. ***Network Topology for EIGRP over Frame Relay Using Dynamic Mappings***
  2.  
  3. R1(config)#interface serial0/0/0
  4. Enters interface configuration mode
  5.  
  6. R1(config-if)#ip address 192.168.1.101 255.255.255.0
  7. Assigns the IP address and mask
  8.  
  9. R1(config-if)#encapsulation frame-relay
  10. Enables Frame Relay on this interface
  11.  
  12. R1(config-if)#no shutdown
  13. Enables the interface
  14.  
  15. R1(config-if)#exit
  16. Returns to global configuration mode
  17.  
  18. R1(config)#router eigrp 100
  19. Creates routing process 100
  20.  
  21. R1(config-router)#network 172.16.1.0 0.0.0.255
  22. Advertises the network in EIGRP
  23.  
  24. R1(config-router)#network 192.168.1.0
  25. Advertises the network in EIGRP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement