Known clients are simply clients that have been defined using the "host" parameter.
Code:
host Todd { hardware ethernet 00:E0:18:9B:B3:2C; }
host Bill { hardware ethernet 00:11:d8:70:6b:04; }
host Don { hardware ethernet 00:50:8D:AE:07:27; }
You can have the host defined in a group if you want.
Code:
group {
next-server 192.168.0.129;
host Todd { hardware ethernet 00:E0:18:9B:B3:2C; }
host Bill { hardware ethernet 00:11:d8:70:6b:04; }
host Don { hardware ethernet 00:50:8D:AE:07:27; }
}
This is the same as above except parameters here affect all group members.
If you were to incorporate either of the two above examples in your configuration the �unknown-clients� would be any machines with mac addresses not set in a �host� parameter. Hope this helps.