Advertisement
Guest User

Untitled

a guest
May 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. ***In this example, it is assumed that
  2. the MPLS network is configured with the MPLS PE
  3. devices participating in the EIGRP process and virtual route forwarding.
  4. Only the client-side EIGRP configuration is shown here.***
  5.  
  6. R1 Router
  7.  
  8. R1(config)#interface fastethernet0/0
  9. Enters interface configuration mode
  10.  
  11. R1(config-if)#ip address 192.168.1.2 255.255.255.252
  12. Assigns the IP address and mask
  13.  
  14. R1(config-if)#no shutdown
  15. Enables the interface
  16.  
  17. R1(config-if)#router eigrp 100
  18. Creates routing process 100
  19.  
  20. R1(config-router)#network 172.16.1.0 0.0.0.255
  21. Advertises the network in EIGRP
  22.  
  23. R1(config-router)#network 192.168.1.0 0.0.0.255
  24. Advertises the network in EIGRP
  25.  
  26.  
  27. R2 Router
  28.  
  29. R2(config)#interface fastethernet0/0
  30. Enters interface configuration mode
  31.  
  32. R2(config-if)#ip address 192.168.2.2 255.255.255.252
  33. Assigns the IP address and mask
  34.  
  35. R2(config-if)#no shutdown
  36. Enables the interface
  37.  
  38. R2(config-if)#router eigrp 100
  39. Creates routing process 100
  40.  
  41. R2(config-router)#network 172.17.2.0 0.0.0.255
  42. Advertises the network in EIGRP
  43.  
  44. R2(config-router)#network 192.168.2.0 0.0.0.255
  45. Advertises the network in EIGRP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement