Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. service timestamps debug datetime msec
  2. service timestamps log datetime msec
  3. service password-encryption
  4. !
  5. hostname R1
  6. !
  7. boot-start-marker
  8. boot-end-marker
  9. !
  10. !
  11. enable password 7 020A0B4B18
  12. !
  13. no aaa new-model
  14. !
  15. dot11 syslog
  16. ip source-route
  17. !
  18. !
  19. ip dhcp excluded-address 10.0.0.0 10.0.0.99
  20. ip dhcp excluded-address 10.0.1.0 10.0.1.99
  21. !
  22. ip dhcp pool MY_LAN
  23. network 10.0.0.0 255.255.255.0
  24. default-router 10.0.0.1
  25. dns-server 10.0.0.69 8.8.8.8
  26. !
  27. ip dhcp pool list
  28. !
  29. ip dhcp pool Randers
  30. network 10.0.1.0 255.255.255.0
  31. default-router 20.0.0.1
  32. dns-server 10.0.0.69 8.8.8.8
  33. !
  34. !
  35. !
  36. ip cef
  37. no ipv6 cef
  38. !
  39. multilink bundle-name authenticated
  40. !
  41. crypto pki token default removal timeout 0
  42. !
  43. !
  44. !
  45. !
  46. license udi pid CISCO1841 sn FHK111813CQ
  47. username lops password 7 1105161504
  48. !
  49. redundancy
  50. !
  51. !
  52. !
  53. !
  54. !
  55. !
  56. !
  57. !
  58. !
  59. interface FastEthernet0/0
  60. description ##INTERNET##
  61. ip address dhcp
  62. ip access-group MY_WAN in
  63. ip nat outside
  64. ip virtual-reassembly in
  65. duplex auto
  66. speed auto
  67. !
  68. interface FastEthernet0/1
  69. description ## MY LAN ##
  70. ip address 10.0.0.1 255.255.255.0
  71. ip nat inside
  72. ip virtual-reassembly in
  73. duplex auto
  74. speed auto
  75. !
  76. interface FastEthernet0/1/0
  77. description ##Randers##
  78. ip address 20.0.0.1 255.255.255.252
  79. ip nat inside
  80. ip virtual-reassembly in
  81. duplex auto
  82. speed auto
  83. !
  84. interface FastEthernet0/1/1
  85. no ip address
  86. shutdown
  87. duplex auto
  88. speed auto
  89. !
  90. router rip
  91. version 2
  92. network 10.0.0.0
  93. network 20.0.0.0
  94. network 192.168.1.0
  95. no auto-summary
  96. !
  97. ip default-gateway 192.168.1.1
  98. ip forward-protocol nd
  99. no ip http server
  100. no ip http secure-server
  101. !
  102. !
  103. ip nat inside source list MY_LAN interface FastEthernet0/0 overload
  104. ip nat inside source list Randers interface FastEthernet0/0 overload
  105. ip nat inside source static tcp 10.0.0.69 1723 192.168.150.53 1723 extendable
  106. ip default-network 192.168.1.0
  107. ip default-network 0.0.0.0
  108. ip route 0.0.0.0 0.0.0.0 192.168.1.1
  109. ip route 10.0.1.0 255.255.255.0 20.0.0.2
  110. !
  111. ip access-list standard MY_LAN
  112. permit 10.0.0.0 0.0.0.255
  113. ip access-list standard Randers
  114. permit 10.0.1.0 0.0.0.255
  115. !
  116. ip access-list extended MY_WAN
  117. permit tcp any any established
  118. permit ip any any
  119. !
  120. !
  121. !
  122. !
  123. !
  124. !
  125. !
  126. control-plane
  127. !
  128. !
  129. !
  130. line con 0
  131. line aux 0
  132. line vty 0 4
  133. password 7 12150A0701
  134. login local
  135. transport input all
  136. line vty 5 15
  137. password 7 094041190A
  138. login
  139. transport input all
  140. !
  141. scheduler allocate 20000 1000
  142. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement