From 0bb8703f7824beb9ed9c0585fc28799cb6d22675 Mon Sep 17 00:00:00 2001 From: Alex Paguis Date: Tue, 5 Dec 2023 20:05:56 +0000 Subject: [PATCH] Update document for new client_id_preference param --- docs/config.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/config.md b/docs/config.md index 266c17a..81e67ee 100644 --- a/docs/config.md +++ b/docs/config.md @@ -216,11 +216,11 @@ DHCP leases file format. - Default: "" ### client_id_preference -Decide how client ID has is generated. - -If `host` -> client id will be a `hash(hostname)`. -If `mac` -> client id will be `hash(mac)`. +Decide how the client ID is generated +If `host` -> client id will only use the hostname i.e.`hash(hostname)`. +If `mac` -> client id will only use the MAC address `hash(mac)`. +Else -> client ID will use both Mac and Hostname i.e. `hash(mac + host) - Type: string - Required: no - Valid values: `mac`, `host`