Всем привет.
установлен DHCP на SUSE 11.3
адреса выдаются для удаленных VPN хостов, relay идет через МЭ StoneGate
появилась необходимость фиксировать адреса для некоторых клиентов по mac адресу, но фиксация не осуществляется хосты получают адреса динамически, (mac адрес сверен с данными из лог файла) не могу понять почему не выдаются фикисированные адреса =(max-lease-time 7200;
default-lease-time 600;
local-address 172.16.18.120;
ddns-update-style none;
log-facility local7;
if exists agent.remote-id {
log (info, concat("DHCP adresses for lease ", binary-to-ascii (10,8,".", leased-address), " on IPSec VPN group ", option agent.remote-id));
log (info, concat("Lease for ", binary-to-ascii (10,8,".", leased-address), " CID: ", binary-to-ascii (10,8,".", leased-address), " RID: ", option agent.remote-id));
}
subnet 172.16.18.0 netmask 255.255.255.128 {
deny unknown-clients;
}
class "StoneGate" {
match if ( option agent.remote-id="stonegate@InternalDomain" or option agent.remote-id="Mobile VPN users@InternalDomain" or option agent.remote-id="Test@InternalDomain" );
}
class "Remote access users" {
match if ( option agent.remote-id="User@InternalDomain" );
}
subnet 10.11.16.0 netmask 255.255.252.0 {
option domain-name "domen.ru";
option domain-name-servers 172.16.10.44, 172.16.10.40;
option subnet-mask 255.255.252.0;
pool {
allow members of "StoneGate";
range 10.11.16.114 10.11.16.115;
}
host test2 {
hardware ethernet 00:16:36:85:81:63;
fixed-address 10.11.16.114;
}
host test3 {
hardware ethernet 00:24:1D:C2:E8:72;
fixed-address 10.11.16.115;
}
}
subnet 0.0.0.0 netmask 0.0.0.0 {
option domain-name "domen.ru";
option domain-name-servers 172.16.10.44, 172.16.10.40;
option subnet-mask 255.255.255.0;
pool {
allow members of "StoneGate";
range 10.11.16.30 10.11.16.113;
range 10.11.16.116 10.11.16.254;
range 10.11.17.1 10.11.17.254;
}
pool {
allow members of "Remote access users";
range 10.11.18.1 10.11.18.254;
}
}