Настройка сервера DHCP на Cisco, Configuring DHCP in Cisco Routers

Определим пул раздаваемых адресов

ip dhcp pool test
	network 10.255.255.0 255.255.255.0
	default-router 10.255.255.1
	domain-name test.com
!

Возможны дополнительные опции настройки

router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
router(config)#ip dhcp pool vpn
router(dhcp-config)#?
DHCP pool configuration commands:
...

router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
router(config)#ip dhcp ?
...

Например определим адреса, которые нужно исключить из пула:

router(config)# ip dhcp excluded-address 10.255.255.10 10.255.255.50
router(config)# ip dhcp excluded-address 10.255.255.254

Проверка и траблшутинг DHCP сервера

router#show ip dhcp ?
  binding   DHCP address bindings (помотреть выданные dhcp адреса)
  conflict  DHCP address conflicts
  database  DHCP database agents
  import    Show Imported Parameters
  pool      DHCP pools information
  relay     Miscellaneous DHCP relay information
  server    Miscellaneous DHCP server information

Проверка что cisco роутер получает DHCP запросы от клиентов

	
router# access-list 100 permit ip host 0.0.0.0 host 255.255.255.255
router# debug ip packet detail 100