Cisco 2600 dhcp Configuration Analysis

Source: Internet
Author: User

During network construction, its planning is particularly important. For the configuration of cisco 2600 dhcp, we have made a simple design here. If there is no document to plan the DHCP you want to do. Even if it is just a piece of paper, it is recommended that you plan it first, or there will be problems when configuring it later. Although I can find a lot of DHCP on the Internet, it is much more detailed than mine, but I actually implemented it.

Plan: Use 221.10.170.5 as the public IP address for export. 192.168.1.0 implements Intranet and dynamic NAT for address translation. You can use DHCP to automatically allocate addresses!

Cisco 2600 dhcp configuration command:

 
 
  1. NIC327#show run  
  2. Building configuration...  
  3.  
  4. Current configuration : 901 bytes  
  5. !  
  6. version 12.2  
  7. service timestamps debug uptime  
  8. service timestamps log uptime  
  9. no service password-encryption  
  10. !  
  11. hostname NIC327  
  12. !  
  13. !  
  14. ip subnet-zero  
  15. !  
  16. !  
  17. ip dhcp excluded-address 192.168.1.1 192.168.1.10  
  18. !  
  19. ip dhcp pool net327  
  20.      network 192.168.1.0 255.255.255.0  
  21.      dns-server 221.10.251.197   
  22. !  
  23. !  
  24. !  
  25. !  
  26. interface FastEthernet0/0  
  27. ip address 221.10.170.5 255.255.255.248  
  28. ip nat outside  
  29. speed 10  
  30. full-duplex  
  31. !  
  32. interface Serial0/0  
  33. no ip address  
  34. shutdown  
  35. no fair-queue  
  36. !  
  37. interface FastEthernet0/1  
  38. ip address 192.168.1.1 255.255.255.0  
  39. ip nat inside  
  40. speed 100  
  41. full-duplex  
  42. !  
  43. interface Serial0/1  
  44. no ip address  
  45. shutdown  
  46. !  
  47. ip nat pool net327 221.10.170.5 221.10.170.5 netmask 255.255.255.248  
  48. ip nat inside source list 1 pool net327 overload  
  49. no ip classless  
  50. ip route 0.0.0.0 0.0.0.0 221.10.170.1  
  51. ip http server  
  52. !  
  53. access-list 1 permit 192.168.1.0 0.0.0.255  
  54. !  
  55. line con 0  
  56. line aux 0  
  57. line vty 0 4  
  58. login  
  59. !  
  60. end 
  61.  
  62. NIC327# 

The above is the specific configuration of cisco 2600 dhcp. My vro is used for experiments, so if you want to attack my vro, it is useless. The siling statement is made here. This DHCP is very streamlined.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.