Guest User

cisco7206vxr_001

a guest
Apr 29th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. cisco7206vxr#sh run
  2. Building configuration...
  3. ...
  4. version 15.2
  5. service timestamps debug datetime msec
  6. service timestamps log datetime msec
  7. service password-encryption
  8. ...
  9. aaa new-model
  10. !
  11. aaa group server radius SERVER_GROUP1
  12. server name RADIUS
  13. ip radius source-interface GigabitEthernet0/3
  14. attribute nas-port format d
  15. !
  16. aaa authentication login default group SERVER_GROUP1
  17. aaa authentication ppp default if-needed group SERVER_GROUP1
  18. aaa authorization exec default group SERVER_GROUP1 if-authenticated
  19. aaa authorization network default group SERVER_GROUP1 if-authenticated
  20. aaa authorization network CLIENT_LIST group SERVER_GROUP1
  21. aaa accounting delay-start
  22. aaa accounting update periodic 30
  23. aaa accounting exec default start-stop group SERVER_GROUP1
  24. aaa accounting system default start-stop group SERVER_GROUP1
  25. !
  26. aaa session-id common
  27. !
  28. ip dhcp binding cleanup interval 600
  29. ip dhcp excluded-address 10.0.1.1 10.0.1.3
  30. !
  31. ip dhcp pool NET-POOL
  32. network 10.0.1.0 255.255.255.0
  33. default-router 10.0.1.1
  34. dns-server 10.0.1.1 10.0.0.1 8.8.8.8
  35. lease 48
  36. class NET-POOL
  37. !
  38. ip dhcp class NET-POOL
  39. !
  40. ip host cisco7206vxr 10.0.1.1
  41. ip host open 10.0.1.2
  42. ip host walled 10.0.1.3
  43. ip name-server 8.8.8.8
  44. ip name-server 8.8.4.4
  45. ip cef
  46. no ipv6 cef
  47. !
  48. multilink bundle-name authenticated
  49. !
  50. ...
  51. !
  52. ip ssh authentication-retries 5
  53. ip ssh version 2
  54. policy-map type service SERVICE-DHCP
  55. classname NET-POOL
  56. !
  57. bba-group pppoe global
  58. virtual-template 1
  59. sessions auto cleanup
  60. !
  61. interface GigabitEthernet0/1
  62. ip address 10.0.0.202 255.255.255.0
  63. ip nat outside
  64. media-type rj45
  65. speed auto
  66. duplex auto
  67. negotiation auto
  68. !
  69. ...
  70. !
  71. interface GigabitEthernet0/3
  72. ip address 10.0.1.1 255.255.255.0
  73. media-type rj45
  74. speed auto
  75. duplex auto
  76. negotiation auto
  77. pppoe enable group global
  78. ip subscriber l2-connected
  79. initiator dhcp
  80. !
  81. interface Virtual-Template1
  82. mtu 1492
  83. ip unnumbered GigabitEthernet0/3
  84. ip nat inside
  85. peer default ip address pool mypool
  86. keepalive 15 3
  87. ppp mtu adaptive
  88. ppp authentication pap chap
  89. ppp ipcp dns 8.8.8.8 8.8.4.4
  90. ppp timeout retry 10
  91. ppp timeout authentication 20
  92. !
  93. ip local pool mypool 10.1.1.1 10.1.1.254
  94. ip default-gateway 10.0.0.1
  95. ip nat inside source list 10 interface GigabitEthernet0/3 overload
  96. ip forward-protocol nd
  97. !
  98. no ip http server
  99. no ip http secure-server
  100. ip route 0.0.0.0 0.0.0.0 10.0.0.1
  101. ip route 10.0.0.0 255.255.255.0 10.0.0.1
  102. ip route 10.1.1.0 255.255.255.0 10.0.0.1
  103. !
  104. logging trap debugging
  105. logging host 10.0.0.203
  106. !
  107. radius server RADIUS
  108. address ipv4 10.0.1.2 auth-port 1812 acct-port 1813
  109. timeout 10
  110. retransmit 5
  111. automate-tester username cisco
  112. key 7 ********************
  113. !
  114. control-plane
  115. !
  116. banner login ^C Cisco 7206VXR Router ^C
  117. !
  118. line con 0
  119. stopbits 1
  120. line aux 0
  121. stopbits 1
  122. line vty 0 4
  123. transport input ssh
  124. line vty 5 15
  125. transport input ssh
  126. !
  127. ntp server 10.0.0.1
  128. !
  129. end
Advertisement
Add Comment
Please, Sign In to add comment