I have hosts and host groups defined in my hand-written dhcp.conf file. My hosts and host groups are not displaying on the main DHCP Server module index page. Additionally, they are not being displayed in the "Subnets" and "Shared Networks" sections ("Hosts/Groups directly in this shared network/subnet").
I nest my hosts and hosts groups per the following:
shared-network <foo> {
option ...;
option ...;
pool {
range 172.16.20.50 172.16.20.100;
option ...;
option ...;
group <bar> {
option ...;
option ...;
host <baz>
hardware ethernet 00:00:00:00:00:00;
fixed-address 172.16.20.99;
}
}
}
}
If I move the "group" declaration/section in the file out from the "pool" section up one level, they correctly display throughout the module and its sections. However, I nest the group sections with the pool sections for finer control and special pool and group parameter settings.
That's a limitation of Webmin at the moment - it only looks for groups at the top level, not inside of ranges.