Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2013
1,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. Router-Cisco#show running-config
  2. Building configuration...
  3.  
  4. Current configuration : 2554 bytes
  5. !
  6. version 12.3
  7. no service pad
  8. service timestamps debug datetime msec
  9. service timestamps log datetime msec
  10. no service password-encryption
  11. !
  12. hostname Router-Cisco
  13. !
  14. boot-start-marker
  15. boot-end-marker
  16. !
  17. !
  18. no aaa new-model
  19. ip subnet-zero
  20. ip cef
  21. ip dhcp excluded-address 192.168.13.0 192.168.13.110
  22. !
  23. ip dhcp pool dpool1
  24. import all
  25. network 192.168.13.0 255.255.255.128
  26. default-router 192.168.13.5
  27. dns-server 8.8.8.8 8.8.4.4 208.67.220.220
  28. domain-name xx.xx
  29. !
  30. !
  31. no ip domain lookup
  32. ip domain name xxx.xx.x
  33. ip name-server 192.168.13.3
  34. ip name-server 195.29.150.3
  35. vpdn enable
  36. !
  37. vpdn-group 1
  38. request-dialin
  39. protocol pppoe
  40. !
  41. no ftp-server write-enable
  42. !
  43. !
  44. !
  45. !
  46. !
  47. !
  48. !
  49. interface Loopback0
  50. description Loopback interface
  51. ip address 10.10.10.100 255.255.255.0
  52. !
  53. interface FastEthernet0
  54. description LAN izlaz
  55. no ip address
  56. !
  57. interface FastEthernet1
  58. no ip address
  59. shutdown
  60. !
  61. interface FastEthernet2
  62. no ip address
  63. shutdown
  64. !
  65. interface FastEthernet3
  66. no ip address
  67. shutdown
  68. !
  69. interface FastEthernet4
  70. description WAN veza - Cisco-router <-> zyxel
  71. no ip address
  72. no ip redirects
  73. no ip unreachables
  74. no ip proxy-arp
  75. ip nat outside
  76. ip virtual-reassembly
  77. no ip mroute-cache
  78. duplex auto
  79. speed auto
  80. pppoe enable
  81. pppoe-client dial-pool-number 1
  82. no cdp enable
  83. !
  84. interface Vlan1
  85. ip address 192.168.13.10 255.255.255.128
  86. ip nat inside
  87. ip virtual-reassembly
  88. !
  89. interface Dialer0
  90. ip address negotiated
  91. ip mtu 1450
  92. encapsulation ppp
  93. shutdown
  94. dialer pool 1
  95. dialer-group 1
  96. ppp authentication chap
  97. !
  98. interface Dialer1
  99. description ADSL WAN dialer
  100. mtu 1492
  101. ip address negotiated
  102. no ip unreachables
  103. ip nat outside
  104. ip virtual-reassembly
  105. encapsulation ppp
  106. ip tcp adjust-mss 1452
  107. no ip mroute-cache
  108. dialer pool 1
  109. dialer-group 1
  110. no cdp enable
  111. ppp authentication chap pap callin
  112. ppp chap hostname xxxxxx
  113. ppp chap password 0 xxxxxx
  114. ppp pap sent-username xxxxxx password 0 xxxxxx
  115. !
  116. router rip
  117. version 2
  118. network 192.168.13.0
  119. no auto-summary
  120. !
  121. ip classless
  122. ip route 0.0.0.0 0.0.0.0 192.168.13.5
  123. ip route 192.168.13.5 255.255.255.255 Dialer1
  124. ip route 192.168.13.10 255.255.255.255 Dialer0
  125. !
  126. no ip http server
  127. no ip http secure-server
  128. !
  129. dialer-list 1 protocol ip permit
  130. !
  131. control-plane
  132. !
  133. !
  134. line con 0
  135. password xxxxxx
  136. login
  137. no modem enable
  138. transport preferred all
  139. transport output all
  140. line aux 0
  141. transport preferred all
  142. transport output all
  143. line vty 0 4
  144. password xxxxxx
  145. login
  146. transport preferred all
  147. transport input all
  148. transport output all
  149. !
  150. scheduler max-task-time 5000
  151. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement