اوامر ضبط اعدادت ال DHCP علي Cisco Routers and Switches

Share:
بسم الله الرحمن الرحيم 

DHCP on Cisco Routers and Switches



DHCP

يعتبر بروتوكول ال DHCP من اهم البروتوكولات التي تستخدم اليوم في عالم الشبكات حيث انها تقوم بعمليه تنظيميه في توزيع اعدادات ال IP Address المجتلفه للاجهزه وذلك في الشبكات العملاقه التي يصعب ضبط اعدادتها يدويا ويستخدم ال DHCP في العديد من الاجهزه وانظمه التشغيل في عالم الشبكات 

وموضوع اليوم عن ضبط اعدادات ال DHCP علي اجهزه سيسكو الرواتر والسويتشات واهم الاوامر المستخدمه في النقاط التاليه

  • Configuring DHCP
  • Verifying and troubleshooting DHCP configuration
  • Configuring a DHCP helper address


Configuring DHCP اهم الاوامر الاساسيه لاعدادات ال DHCP من اضافه Pool , gateway ,dns , وقت لحجز الايبهات لكل جهاز وغيرها


Router(config)#ip dhcp pool academy
Creates a DHCP pool called academy
Router(dhcp-config)#network 172.16.10.0 255.255.255.0
Defines the range of addresses to be leased
Router(dhcp-config)#default-router 172.16.10.1
Defines the address of the default router for the client
Router(dhcp-config)#dns-server 172.16.10.10
Defines the address of the DNS server for the client
Router(dhcp-config)#netbios-name-server 172.16.10.10
Defines the address of the NetBIOS server for the client
Router(dhcp-config)#domain-name empson.ca
Defines the domain name for the client
Router(dhcp-config)#lease 14 12 23
Defines the lease time to be 14 days, 12 hours, 23 minutes
Router(dhcp-config)#lease infinite
Sets the lease time to infinity (default time is 1 day)
Router(dhcp-config)#exit
 
Router(config)#ip dhcp excluded-address 172.16.10.1 172.16.10.9
Specifies the range of addresses not to be leased out to clients
Router(config)#no service dhcp
Turns the DHCP service off (service is on by default in IOS)
Router(config)#service dhcp
Turns the DHCP service on

Verifying and Troubleshooting DHCP Configuration اهم اوامر للتاكد من المعلومات واداره المشكلات


Router#show ip dhcp binding
Displays a list of all bindings created
Router#show ip dhcp server statistics
Displays a list of the number of messages sent and received by the DHCP server
Router#debug ip dhcp server events
Displays the DHCP process of addresses being leased and returned

Configuring a DHCP Helper Address من اهم الاوامر لتوجيه رسائل ال DHCP  علي جهاز معين في الشبكه علي سبيل المثال يوجد جهاز راوتر وسويتش وسيرفر وكل منهم يلعب دور ال DHCP في الشبكه وهذه من اقوي المشاكل التي تقابل الادمن فيجب عليك اخي الكريم تحديد جهاز واحد فقط يقوم بعمليه ال DHCP وعمل باك اب له في حاله وقوعه ولتوجيه رسائل ال DHCP  علي جهاز واحد نستخدم التالي


Router(config)#int fa 0/0
 
Router(config-if)#ip helper-address 172.16.20.2
Defines that DHCP broadcasts will be forwarded to this specific address rather than be dropped by the router


في رعايه الله وبالتوفيق للجميع