Re: [Kea-users] [EXTERNAL] RE: No DHCP Reply sent out from kea server

2024-05-08 Thread Marek Hajduczenia
I do not use RPD in v6 mode so I cannot test that but perhaps try to add a line at the end of the new statement as follows “always-send”: true That will force transmission of Option 17 unconditionally if this class is matched. Marek From: Xiao, Yu (CCI-Atlanta) Date: Wednesday, May 8, 2024

Re: [Kea-users] [EXTERNAL] RE: No DHCP Reply sent out from kea server

2024-05-08 Thread Xiao, Yu (CCI-Atlanta) via Kea-users
Hi Marek, I have added, but there’s no change. I adjusted the position of this part configuration to the top and bottom, but still no change. "client-classes": [ { "name": "RPD", "test": "substring(option[17].option[2].hex,0,3) == 'RPD'",

Re: [Kea-users] [EXTERNAL] RE: No DHCP Reply sent out from kea server

2024-05-08 Thread Xiao, Yu (CCI-Atlanta) via Kea-users
Thank you, Marek! Let me try! Best Regards, Yu From: Marek Hajduczenia Date: Wednesday, May 8, 2024 at 4:10 PM To: 'Kea user's list' Cc: Xiao, Yu (CCI-Atlanta) Subject: [EXTERNAL] RE: [Kea-users] No DHCP Reply sent out from kea server You need to add

Re: [Kea-users] No DHCP Reply sent out from kea server

2024-05-08 Thread Marek Hajduczenia
You need to add { "space": "dhcp6", "name": "vendor-opts", "code": 17, "data": "4491" } to your "option-data" stanza. Otherwise, the process will not insert the vendor-specific entry in Option 17. Marek From: Kea-users On Behalf Of Xiao, Yu (CCI-Atlanta) via

[Kea-users] No DHCP Reply sent out from kea server

2024-05-08 Thread Xiao, Yu (CCI-Atlanta) via Kea-users
Greetings, I configured some sub-options for DHCPv6 Option 17 for RPD use. I didn’t find too detailed information regarding how to customize those sub-options under one option such as DHCPv6 option 17. Luckily, I found some examples from previous discussion email. Before I added those options,