You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class "foo" {
match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
}
class declaration is not supported by pydhcpdparser. Please check supported configuration values from Readme.
In order to unblock, you could split your dhcpd.conf into multiple files, thereby moving class declarations out to new file. That way you will still be able to use pydhcpdparser for rest of the configurations.
my config:
default-lease-time 604800;
max-lease-time 604800;
authoritative;
log-facility local7;
class "foo" {
match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
}
ddns-update-style interim;
ignore client-updates;
subnet 172.16.20.0 netmask 255.255.254.0 {
option domain-name-servers 172.16.80.100 , 202.106.196.115;
option routers 172.16.20.1;
deny unknown-clients;
range 172.16.20.11 172.16.20.254;
# range 172.16.21.11 172.16.21.254;
}
error occurred:
The text was updated successfully, but these errors were encountered: