Advertisement
Guest User

Untitled

a guest
Jul 8th, 2011
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. # router
  2. Current configuration : 1290 bytes
  3. !
  4. version 12.3
  5. service timestamps debug datetime msec
  6. service timestamps log datetime msec
  7. no service password-encryption
  8. !
  9. hostname therouter
  10. !
  11. boot-start-marker
  12. boot-end-marker
  13. !
  14. no aaa new-model
  15. ip subnet-zero
  16. ip cef
  17. !
  18. ip audit po max-events 100
  19. !
  20. --More--
  21. *Mar 1 00:26:50.107: %SYS-5-CONFIG_I: Configured from console ! e
  22. !
  23. interface FastEthernet0/0
  24. description $FW_INSIDE$
  25. bandwidth 34000
  26. ip address 192.168.100.1 255.255.255.0
  27. no ip redirects
  28. no ip unreachables
  29. no ip proxy-arp
  30. ip nat inside
  31. load-interval 60
  32. duplex auto
  33. speed auto
  34. !
  35. interface Serial0/0
  36. no ip address
  37. shutdown
  38. clock rate 2000000
  39. !
  40. interface FastEthernet0/1
  41. ip address 192.168.0.1 255.255.255.0
  42. ip verify unicast reverse-path
  43. no ip redirects
  44. no ip unreachables
  45. no ip proxy-arp
  46. ip nat outside
  47. load-interval 60
  48. duplex auto
  49. speed auto
  50. !
  51. interface FastEthernet1/0
  52. no ip address
  53. shutdown
  54. duplex auto
  55. speed auto
  56. !
  57. router rip
  58. network 192.168.0.0
  59. network 192.168.100.0
  60. !
  61. ip nat inside source list 9 interface FastEthernet0/1 overload
  62. ip classless
  63. !
  64. ip http server
  65. no ip http secure-server
  66. !
  67. access-list 9 permit 192.168.100.0 0.0.0.255
  68. !
  69. line con 0
  70. line aux 0
  71. line vty 0 4
  72. !
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement