Advertisement
Guest User

Untitled

a guest
Dec 4th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. R1:
  2. interface Tunnel0
  3. ip address 5.0.0.1 255.0.0.0
  4. tunnel source FastEthernet0/0
  5. tunnel destination 11.0.0.2
  6. !
  7. !
  8. interface FastEthernet0/0
  9. ip address 10.0.0.2 255.0.0.0
  10. duplex auto
  11. speed auto
  12. !
  13. interface FastEthernet0/1
  14. ip address 192.168.0.1 255.255.255.0
  15. duplex auto
  16. speed auto
  17. !
  18. router ospf 1
  19. network 192.168.0.0 0.0.0.255 area 0
  20. network 10.0.0.0 0.255.255.255 area 0
  21. !
  22. ip route 0.0.0.0 0.0.0.0 5.0.0.2
  23.  
  24. R2:
  25. interface FastEthernet0/0
  26. ip address 10.0.0.1 255.0.0.0
  27. duplex auto
  28. speed auto
  29. !
  30. interface FastEthernet0/1
  31. ip address 11.0.0.1 255.0.0.0
  32. duplex auto
  33. speed auto
  34. !
  35. router ospf 1
  36. network 10.0.0.0 0.255.255.255 area 0
  37. network 11.0.0.0 0.255.255.255 area 0
  38.  
  39. R3:
  40. interface Tunnel0
  41. ip address 5.0.0.2 255.0.0.0
  42. tunnel source FastEthernet0/0
  43. tunnel destination 10.0.0.2
  44. !
  45. !
  46. interface FastEthernet0/0
  47. ip address 11.0.0.2 255.0.0.0
  48. duplex auto
  49. speed auto
  50. !
  51. interface FastEthernet0/1
  52. ip address 175.0.0.1 255.255.255.0
  53. duplex auto
  54. speed auto
  55. !
  56. router ospf 1
  57. network 11.0.0.0 0.255.255.255 area 0
  58. network 175.0.0.0 0.0.0.255 area 0
  59. !
  60. ip route 0.0.0.0 0.0.0.0 5.0.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement