IOS AdvancedEnterprise 12.4(19)Собственно, проблема заключается в следующем:
Поднимаю dhcp-сервер на вышеобозначенной cisco по материалам первоисточника:
http://cco.cisco.com/en/US/docs/ios/12_0t/12_0t1/feature/gui...
А результата нет. вот кусок конфига:
!
ip cef
no ip dhcp use vrf connected
no ip dhcp conflict logging
ip dhcp excluded-address 192.168.3.241
!
ip dhcp pool Office
network 192.168.3.240 255.255.255.240
dns-server 192.168.3.1
!
в логах при попытке получить адрес пришет следующее:
000534: Nov 6 13:31:30.912 PCTime: DHCPD: checking for expired leases.Никто не подскажет, что бы это могло быть?
Вы весь конфиг покажите...
ip dhcp ping packets 4ip dhcp pool pool1
import all
network xx.xx.xx.xx xx.xx.xx.xx
default-router xx.xx.xx.xx
dns-server xx.xx.xx.xx xx.xx.xx.xx
lease infinite (тут время по нужде)
ip dhcp pool mypool
import all
host xx.xx.xx.xx xx.xx.xx.xx
client-identifier 0100.508d.b2c2.57
client-name xxxxxxxxxxxxxxx
default-router xx.xx.xx.xx x
dns-server xx.xx.xx.xx xx.xx.xx.xx
lease infinite (тут время по нужде)
update arpаrp xx.xx.xx.xx xx.xx.xx.xx
Пробую сделать так:no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.3.241
ip dhcp ping packets 4
!
ip dhcp pool AltOffice
import all
network 192.168.3.240 255.255.255.240
dns-server 192.168.3.1
lease infinite
!
ip dhcp pool 244
import all
host 192.168.3.244 255.255.255.240
hardware-address 0014.d110.bb1f // мой мак.
default-router 192.168.3.241
client-name alt4
lease infinite
update arp
!
Без второго пула адрес получаю. А со вторым - болт. Что не так делаю?
Вот лог:
009090: Nov 8 11:42:47.945 PCTime: DHCPD: htype 1 chaddr 0014.d110.bb1f
009091: Nov 8 11:42:47.945 PCTime: DHCPD: remote id 020a0000c0a803f100000003
009092: Nov 8 11:42:47.945 PCTime: DHCPD: circuit id 00000000
009093: Nov 8 11:42:47.945 PCTime: DHCPD: Seeing if there is an internally specified pool class:И еще, не соображу зачем жестко arp прописывать:
// аrp xx.xx.xx.xx xx.xx.xx.xx ?
Всем спасибо!
Все заработало в таком виде:no ip dhcp use vrf connected
ip dhcp ping packets 4
ip dhcp excluded-address 192.168.3.241
ip dhcp pool Office
import all
network 192.168.3.240 255.255.255.240
dns-server 192.168.3.1
!
ip dhcp pool 242
host 192.168.3.242 255.255.255.240
client-identifier 0100.1d7d.430e.af
default-router 192.168.3.241
!Ему, оказывается, надо, чтобы не мак-адрес был, а client-id (тот же мак, только вначале 01 добавляется).