Advertisement
Guest User

Untitled

a guest
May 24th, 2017
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. Router R1 Configuration:
  2. conf t
  3. service password-encryption
  4. n 000000000000000000000000000000000000000000000000000o ip domain lookup
  5. Hostname R1
  6. enable secret class
  7. line con 0
  8. logging synchronous
  9. password cisco
  10. login
  11. line vty 0
  12. password cisco
  13. login
  14. banner motd @Unauthorized Access is Prohibited!@
  15. ipv6 unicast-routing
  16. ipv6 router ospf 1
  17. router-id 1.1.1.1
  18. passive-interface g0/0
  19. interface g0/0
  20. ip address 192.168.1.1 255.255.255.0
  21. ipv6 address 2001:db8:acad:a::1/64
  22. ipv6 address fe80::1 link-local
  23. interface s0/0/0
  24. clock rate 128000
  25. ip address 192.168.12.1 255.255.255.0
  26. ipv6 address 2001:db8:acad:12::1/64
  27. ipv6 address fe80::1 link-local
  28. ipv6 ospf 1 area 0
  29. no shutdown
  30. interface s0/0/1
  31. ip address 192.168.13.1 255.255.255.0
  32. ipv6 address 2001:db8:acad:13::1/64
  33. ipv6 address fe80::1 link-local
  34. ipv6 ospf 1 area 0
  35. no shutdown
  36. router ospf 1
  37. network 192.168.1.0 0.0.0.255 area 0
  38. network 129.168.12.0 0.0.0.3 area 0
  39. network 192.168.13.0 0.0.0.3 area 0
  40. passive-interface g0/0
  41. end
  42.  
  43.  
  44. Router R2 Configuration:
  45. conf t
  46. service password-encryption
  47. no ip domain lookup
  48. hostname R2
  49. enable secret class
  50. line con 0
  51. logging synchronous
  52. password cisco
  53. login
  54. line vty 0
  55. password cisco
  56. login
  57. banner motd @Unauthorized Access is Prohibited!@
  58. ipv6 unicast-routing
  59. ipv6 router ospf 1
  60. router-id 2.2.2.2
  61. interface g0/0
  62. ip address 192.168.2.1 255.255.255.0
  63. ipv6 address 2001:db8:acad:B::2/64
  64. ipv6 address fe80::1 link-local
  65. no shutdown
  66. interface s0/0/0
  67. ip address 192.168.12.2 255.255.255.252
  68. ipv6 address 2001:db8:acad:12::2/64
  69. ipv6 address fe80::2 link-local
  70. ipv6 ospf 1 area 0
  71. no shutdown
  72. interface s0/0/1
  73. clock rate 128000
  74. ipv6 address 2001:db8:acad:23::2/64
  75. ipv6 address fe80::2 link-local
  76. no shutdown
  77. router ospf 1
  78. network 192.168.2.0 0.0.0.255 area 0
  79. network 192.168.12.0 0.0.0.3 area 0
  80. network 192.168.23.0 0.0.0.3 area 0
  81. end
  82.  
  83.  
  84. Router R3 Configuration:
  85. conf t
  86. service password-encryption
  87. no ip domain lookup
  88. enable secret class
  89. hostname R3
  90. line con 0
  91. logging synchronous
  92. password cisco
  93. login
  94. line vty 0
  95. password cisco
  96. login
  97. banner motd @Unauthorized Access is Prohibited!@
  98. interface g0/0
  99. ipv6 address 2001:db8:acad:c::3/64
  100. ipv6 address fe80::3 link-local
  101. interface s0/0/0
  102. clock rate 128000
  103. ip address 192.168.13.1 255.255.255.252
  104. ipv6 address 2001:db8:acad:13::3/64
  105. ipv6 address fe80::3 link-local
  106. no shutdown
  107. interface s0/0/1
  108. ip address 192.168.23.2 255.255.255.252
  109. ipv6 address 2001:db8:acad:23::3/64
  110. ipv6 address fe80::3 link-local
  111. router ospf 1
  112. network 192.168.3.0 0.0.0.255 area 0
  113. passive-interface g0/0
  114. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement