[Kea-users] Kea DHCPv6 Bulk Leasequery Relay-ID
Mark Blackford
mblackford at agn.tech
Tue Sep 17 13:15:35 UTC 2024
Hello Darren,
I have attached the BLQ log file that you requested.
Thanks!
[Logo]<http://www.alchemy-global.net/>
Mark Blackford
Network Engineer
678-230-8769
mblackford at agn.tech<mailto:mblackford at agn.tech>
From: Kea-users <kea-users-bounces at lists.isc.org> on behalf of Darren Ankney <darren.ankney at gmail.com>
Date: Tuesday, September 17, 2024 at 4:37 AM
To: Kea user's list <kea-users at lists.isc.org>
Subject: Re: [Kea-users] Kea DHCPv6 Bulk Leasequery Relay-ID
Hi Mark,
Your configuration looks ok to me. Please can you attach the log file: /var/log/kea/dhcp6-blq.log? I would like to have a look there to see if there is any clue.
Thank you,
Darren Ankney
On Mon, Sep 16, 2024 at 8:51 AM Mark Blackford <mblackford at agn.tech> wrote:
Hello Darren,
I have attached the file here and also pasted below.
Thank you for your assistance,
Mark
% cat kea-dhcp6.conf
{
"Dhcp6": {
"interfaces-config": {
"interfaces": [ "ens224/fc00:d2c0:10:170::23" ]
},
"control-socket": {
"socket-type": "unix",
"socket-name": "/tmp/kea6-ctrl-socket"
},
// Mark B. July 19, 2024
// Trying memfile for bulk leasequery
"lease-database": {
"type": "memfile",
"persist": true,
"name": "/var/lib/kea/dhcp6.leases"
},
// "lease-database": {
// "type": "postgresql",
// "name": "kea",
// "user": "kea",
// "password": "XXXXXXXXXXXX",
// "host": "localhost",
// "port": 5432
// },
"hosts-database": {
"type": "postgresql",
"name": "kea",
"user": "kea",
"password": "XXXXXXXXXXXX",
"host": "localhost",
"port": 5432
},
"expired-leases-processing": {
"reclaim-timer-wait-time": 10,
"flush-reclaimed-timer-wait-time": 25,
"hold-reclaimed-time": 3600,
"max-reclaim-leases": 100,
"max-reclaim-time": 250,
"unwarned-reclaim-cycles": 5
},
"renew-timer": 600,
"rebind-timer": 800,
"preferred-lifetime": 1200,
"valid-lifetime": 1200,
"option-data": [
{
"name": "dns-servers",
"data": "2001:XXXX:XXXX::XXXX, 2001:XXXX:XXXX::XXXX"
},
],
# Added on suggestion of Darren from ISC Mailing List (Sept. 6, 2024)
# https://kea.readthedocs.io/en/kea-2.6.1/arm/dhcp6-srv.html#storing-extended-lease-information
"store-extended-info": true,
"hooks-libraries": [
{
"library": "/usr/lib64/kea/hooks/libdhcp_lease_query.so",
"parameters": {
"requesters": [ "fc00:d2c0:10:170::2", "fc00:d2c0:10:170::3" ],
"advanced" : {
"bulk-query-enabled": true,
"active-query-enabled": false,
"extended-info-tables-enabled": true,
"lease-query-ip": "fc00:d2c0:10:170::23",
"lease-query-tcp-port": 547,
},
},
},
{
"library": "/usr/lib64/kea/hooks/libdhcp_legal_log.so",
"parameters": {
"path": "/var/log/kea",
"base-name": "kea-forensic6",
"request-parser-format": "ifelse(pkt6.msgtype == 5, 'DHCPv6 RENEW(5)' + 0x0a + 'OPTION-18: | DUID= ' + hexstring(option[1].hex, ':') + '| CIRCUIT ID= ' + uint8totext(substring(relay6[1].option[18].hex,20,4)) + 0x0a + 'OPTION-37: REMOTE-ID= ' + uint8totext(substring(relay6[1].option[37].hex, 0, 24)) + 0x0a,'UNKNOWN MESSAGE FOR REQUEST PARSER')",
"response-parser-format": "ifelse(pkt6.msgtype == 7, 'DHCPv6 REPLY(7)' + 0x0a + 'Address: ' + addrtotext(substring(option[3].option[5].hex, 0, 16)) + ' has been assigned for ' + uint32totext(substring(option[3].option[5].hex, 20, 4)) + ' seconds to a device with DUID: ' + hexstring(option[1].hex, ':'),'UNKNOWN MESSAGE FOR RESPONSE PARSER')",
// "request-parser-format": "ifelse(pkt6.msgtype == 5, 'DHCPv6 RENEW(5)' + 0x0a + 'OPTION-18: | DUID= ' + hexstring(option[1].hex, ':') + '| CIRCUIT ID= ' + uint8totext(substring(relay6[1].option[18].hex,20,4)) + 0x0a + 'OPTION-37: REMOTE-ID= ' + uint8totext(substring(relay6[1].option[37].hex, 0, 24)) + 0x0a,'UNKNOWN MESSAGE FOR REQUEST PARSER')",
// "response-parser-format": "ifelse(pkt6.msgtype == 7, 'DHCPv6 REPLY(7)' + 0x0a + 'Address: ' + addrtotext(substring(option[3].option[5].hex, 0, 16)) + ' has been assigned for ' + uint32totext(substring(option[3].option[5].hex, 20, 4)) + ' seconds to a device with DUID: ' + hexstring(option[1].hex, ':'),'UNKNOWN MESSAGE FOR RESPONSE PARSER')",
},
},
{ "library": "/usr/lib64/kea/hooks/libdhcp_lease_cmds.so", },
{ "library": "/usr/lib64/kea/hooks/libdhcp_stat_cmds.so", },
//{ "library": "/usr/lib64/kea/hooks/libdhcp_ha.so", },
],
### Manual edits required here to define subnets to be served by this server.
"subnet6": [
{
"id": 1,
"subnet": "XXXX:XXXX:1580:0255::/64",
"pools": [ { "pool": "XXXX:XXXX:1580:0255::100 - XXXX:XXXX:1580:0255::105" } ],
"interface": "ens224",
"pd-pools": [
{
"prefix": "XXXX:XXXX:8000:0000::",
"prefix-len": 33,
"delegated-len": 56,
}
],
}
],
"loggers": [
{
"name": "kea-dhcp6",
"severity": "DEBUG",
"debuglevel": 99,
"output_options": [
{
"output": "/var/log/kea/dhcp6.log",
"maxver": 10
}
]
},
{
"name": "kea-dhcp6.lease-query-hooks",
"severity": "DEBUG",
"debuglevel": 99,
"output_options": [
{
"output": "/var/log/kea/dhcp6-blq.log",
"maxver": 10
}
]
},
{
"name": "kea-dhcp6.dhcpsrv",
"severity": "DEBUG",
"debuglevel": 99,
"output_options": [
{
"output": "/var/log/kea/dhcp6-dhcpsrv.log",
"maxver": 10
}
]
},
{
"name": "kea-dhcp6.leases",
"severity": "DEBUG",
"debuglevel": 99,
"output_options": [
{
"output": "/var/log/kea/dhcp6-leases.log",
"maxver": 10
}
]
},
{
"name": "kea-dhcp6.packets",
"severity": "DEBUG",
"debuglevel": 99,
"output_options": [
{
"output": "/var/log/kea/isc-dhcp6-like-logging.log",
"maxver": 10
}
]
}
]
}
}
// "loggers": [
// {
// "name": "kea-dhcp6",
// "output_options": [
// {
// "output": "stdout",
//
// "pattern": "%-5p %m\n",
// }
// ],
// // This specifies the severity of log messages to keep. Supported values
// // are: FATAL, ERROR, WARN, INFO, DEBUG
// // "severity": "INFO",
//
// // If DEBUG level is specified, this value is used. 0 is least verbose,
// // 99 is most verbose. Be cautious, Kea can generate lots and lots
// // of logs if told to do so.
// "debuglevel": 0
// }
// ]
//}
//}
[Logo]<http://www.alchemy-global.net/>
Mark Blackford
Network Engineer
678-230-8769
mblackford at agn.tech<mailto:mblackford at agn.tech>
From: Kea-users <kea-users-bounces at lists.isc.org<mailto:kea-users-bounces at lists.isc.org>> on behalf of Darren Ankney <darren.ankney at gmail.com<mailto:darren.ankney at gmail.com>>
Date: Friday, September 13, 2024 at 5:30 AM
To: Kea user's list <kea-users at lists.isc.org<mailto:kea-users at lists.isc.org>>
Subject: Re: [Kea-users] Kea DHCPv6 Bulk Leasequery Relay-ID
Hello Mark,
Please can you upload your full configuration here (with any sensitive parts redacted)?
Thank you,
Darren Ankney
On Wed, Sep 11, 2024 at 2:43 PM Mark Blackford <mblackford at agn.tech> wrote:
Hello Darren,
I re-tested the BLQ from Kea last week to a Juniper Gateway router, and while the IA_NA and IA_PD DUID leases were found this time, the actual DHCPv6 Type (15) Leasequery-reply packets are undecodable.
I was taking packet captures at the time and wireshark agrees:
1) The IA Address (Type 5) response, Wireshark claims “Trailing Stray Characters”
2) The IA Prefix (Type 26) response, Wireshark claims “Malformed Packet”
I have attached the following for the packets:
1. Detailed BLQ Kea Log for the transaction
2. PCAPs take at the Kea Server
3. The Kea DHCP Lease File (From today)
4. The Snippet of the Juniper Decode
I forgot to get the leases file on Friday, but this is a lab with only 1 unit. I attached the file from today which looks to have the same information.
It looks like the info that is needed to restore the lease is there, but I don’t know how to stop the packets being malformed.
Thank,
[Logo]<http://www.alchemy-global.net/>
Mark Blackford
Network Engineer
678-230-8769
mblackford at agn.tech<mailto:mblackford at agn.tech>
From: Kea-users <kea-users-bounces at lists.isc.org<mailto:kea-users-bounces at lists.isc.org>> on behalf of Mark Blackford <mblackford at agn.tech>
Date: Friday, September 6, 2024 at 9:02 AM
To: Kea user's list <kea-users at lists.isc.org<mailto:kea-users at lists.isc.org>>
Subject: Re: [Kea-users] Kea DHCPv6 Bulk Leasequery Relay-ID
Hello Darren,
Thank you very much for your reply and correcting this issue.
1) I was aware of the 2.6 requirement and re-installed everything from scratch a little over a month ago.
[root at dhcp-test ~]# kea-dhcp4 -v
2.6.1
[root at dhcp-test ~]# kea-dhcp6 -v
2.6.1
2) However, I have been following this link:
https://kea.readthedocs.io/en/kea-2.6.0/arm/hooks.html#bulk-leasequery-configuration
Which indicated to me that the option “extended-info-tables-enabled” would have provided the same functionality. However, as you pointed out, there was no relay ID in the lease table.
I have since added the global parameter "store-extended-info" as you suggested, and I now see the JSON now at the end of each memfile lease. I hope this helps anyone trying to accomplish the same thing.
[Logo]<http://www.alchemy-global.net/>
Mark Blackford
Network Engineer
678-230-8769
mblackford at agn.tech<mailto:mblackford at agn.tech>
From: Kea-users <kea-users-bounces at lists.isc.org<mailto:kea-users-bounces at lists.isc.org>> on behalf of Darren Ankney <darren.ankney at gmail.com<mailto:darren.ankney at gmail.com>>
Date: Friday, September 6, 2024 at 4:33 AM
To: Kea user's list <kea-users at lists.isc.org<mailto:kea-users at lists.isc.org>>
Subject: Re: [Kea-users] Kea DHCPv6 Bulk Leasequery Relay-ID
Hi Mark,
Two questions:
1. Are you using Kea 2.6.1 ? I think the relay-id method was not
available before 2.6
2. Have you globally set "store-extended-info": true ? (see:
https://kea.readthedocs.io/en/kea-2.6.1/arm/dhcp6-srv.html#storing-extended-lease-information)
as this is required as well. It doesn't appear so from the lease you
pasted as I don't see any data in the "user-context" field.
Thank you,
Darren Ankney
On Wed, Aug 28, 2024 at 3:23 PM Mark Blackford <mblackford at agn.tech> wrote:
>
> Hello,
>
>
>
> I am trying to use the Bulk Leasequery feature of Kea DHCP6 to reload Gateway routers with delegated (or all) leases that have been lost due to either a reload or crash scenario. Since I want to reload thousands of IA_NA/IA_PD leases on demand, I expected to see a very clear “glue” between the relay ID and the target leases. But I do not and using default commands from my Juniper gateways is not resulting in any leases being returned.
>
>
>
> My main question that I am struggling with is where do I find where the Relay-ID value is stored to properly query for leases tied to it since I do not even know if my relay-id is valid?
>
>
>
> Based on 16.16.6. DHCPv6 Bulk Leasequery https://kea.readthedocs.io/en/kea-2.6.0/arm/hooks.html#dhcpv6-bulk-leasequery, I re-installed Kea to use a memfile lease backend to use those features.
>
>
>
> My hook library config is below with logging turned to max:
>
>
>
> "hooks-libraries": [
>
> {
>
> "library": "/usr/lib64/kea/hooks/libdhcp_lease_query.so",
>
> "parameters": {
>
> "requesters": [ "fc00:d2c0:10:170::2", "fc00:d2c0:10:170::3" ],
>
> "advanced" : {
>
> "bulk-query-enabled": true,
>
> "active-query-enabled": false,
>
> "extended-info-tables-enabled": true,
>
> "lease-query-ip": "fc00:d2c0:10:170::23",
>
> "lease-query-tcp-port": 547,
>
> },
>
> },
>
> },
>
>
>
> "loggers": [
>
>
>
> {
>
> "name": "kea-dhcp6.lease-query-hooks",
>
> "severity": "DEBUG",
>
> "debuglevel": 99,
>
> "output_options": [
>
> {
>
> "output": "/var/log/kea/dhcp6-blq.log",
>
> "maxver": 10
>
> }
>
> ]
>
> },
>
>
>
> I see the bulk message come into the log file, but it also says there are no leases when I know there is at least 1 test lease (IA_NA/IA_PD):
>
>
>
> [root at dhcp-test ~]# cat /var/lib/kea/dhcp6.leases
>
> address,duid,valid_lifetime,expire,subnet_id,pref_lifetime,lease_type,iaid,prefix_len,fqdn_fwd,fqdn_rev,hostname,hwaddr,state,user_context,hwtype,hwaddr_source,pool_id
>
> 2001:db8:1580:255::100,00:03:00:01:b8:94:70:fb:20:6e,600,1724871654,1,600,0,1,128,0,0,resgw,b8:94:70:fb:20:6e,0,,1,2,0
>
> 2001:db8:8000::,00:03:00:01:b8:94:70:fb:20:6e,600,1724871654,1,600,2,1,56,0,0,resgw,b8:94:70:fb:20:6e,0,,1,2,0
>
>
>
> But the BLQ Hook Log says there are “no active leases”:
>
>
>
> 2024-08-21 14:54:10.244 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:53751,
>
> msg_type=LEASEQUERY (14), trans_id=0xeda378,
>
> options:
>
> type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
>
> type=00044, len=00072: 3 (uint8) :: (ipv6-address),
>
> options:
>
> type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
>
> type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
>
> No relays traversed.
>
>
>
> 2024-08-21 14:54:10.244 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:53751,
>
> msg_type=LEASEQUERY_REPLY (15), trans_id=0xeda378,
>
> options:
>
> type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
>
> type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
>
> type=00013, len=00018: Success(0) "no active leases"
>
> No relays traversed.
>
>
>
> I believe this is a crucial feature for anyone launching IPv6 with Prefix Delegation. Has anyone seen this feature work using relay-id? How did you know which one to use?
>
>
>
> Thanks,
>
> Mark
>
> --
> ISC funds the development of this software with paid support subscriptions. Contact us at https://www.isc.org/contact/ for more information.
>
> To unsubscribe visit https://lists.isc.org/mailman/listinfo/kea-users.
>
> Kea-users mailing list
> Kea-users at lists.isc.org<mailto:Kea-users at lists.isc.org>
> https://lists.isc.org/mailman/listinfo/kea-users
--
ISC funds the development of this software with paid support subscriptions. Contact us at https://www.isc.org/contact/ for more information.
To unsubscribe visit https://lists.isc.org/mailman/listinfo/kea-users.
Kea-users mailing list
Kea-users at lists.isc.org<mailto:Kea-users at lists.isc.org>
https://lists.isc.org/mailman/listinfo/kea-users
--
ISC funds the development of this software with paid support subscriptions. Contact us at https://www.isc.org/contact/ for more information.
To unsubscribe visit https://lists.isc.org/mailman/listinfo/kea-users.
Kea-users mailing list
Kea-users at lists.isc.org<mailto:Kea-users at lists.isc.org>
https://lists.isc.org/mailman/listinfo/kea-users
--
ISC funds the development of this software with paid support subscriptions. Contact us at https://www.isc.org/contact/ for more information.
To unsubscribe visit https://lists.isc.org/mailman/listinfo/kea-users.
Kea-users mailing list
Kea-users at lists.isc.org<mailto:Kea-users at lists.isc.org>
https://lists.isc.org/mailman/listinfo/kea-users
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.isc.org/pipermail/kea-users/attachments/20240917/90941634/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.png
Type: image/png
Size: 47273 bytes
Desc: image001.png
URL: <https://lists.isc.org/pipermail/kea-users/attachments/20240917/90941634/attachment-0002.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image001.png
Type: image/png
Size: 47273 bytes
Desc: image001.png
URL: <https://lists.isc.org/pipermail/kea-users/attachments/20240917/90941634/attachment-0003.png>
-------------- next part --------------
2024-08-06 10:08:25.990 DEBUG [kea-dhcp6.lease-query-hooks/168246.140008231945792] DHCP6_LEASE_QUERY_RECEIVED received query: type: LEASEQUERY, client id: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00, requester: fc00:d2c0:10:170::3, transid: 16038912
2024-08-06 10:08:25.990 DEBUG [kea-dhcp6.lease-query-hooks/168246.140008231945792] DHCP6_LEASE_QUERY_REPLY_SENT response: type: LEASEQUERY_REPLY, client id: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00, requester: fc00:d2c0:10:170::3, transid: 16038912, sent to fc00:d2c0:10:170::3:547
2024-08-06 16:11:20.851 INFO [kea-dhcp6.lease-query-hooks/168246.140008351783040] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-08-06 16:11:39.730 INFO [kea-dhcp6.lease-query-hooks/169542.140378043058304] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-08-06 16:11:39.809 DEBUG [kea-dhcp6.lease-query-hooks/169542.140378043058304] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-08-06 16:13:43.154 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377942017600] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:57314,
msg_type=LEASEQUERY (14), trans_id=0xaf704a,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-06 16:13:43.155 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377958803008] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:57314,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xaf704a,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-06 16:17:20.010 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377992373824] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:63808,
msg_type=LEASEQUERY (14), trans_id=0xfcc908,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-06 16:17:20.010 DEBUG [kea-dhcp6.lease-query-hooks/169542.140378000766528] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:63808,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xfcc908,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 10:46:17.367 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377983981120] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61391,
msg_type=LEASEQUERY (14), trans_id=0x491974,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 10:46:17.368 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377967195712] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61391,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x491974,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 10:50:47.217 DEBUG [kea-dhcp6.lease-query-hooks/169542.140378000766528] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49227,
msg_type=LEASEQUERY (14), trans_id=0xc87e70,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 10:50:47.217 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377992373824] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49227,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xc87e70,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 10:53:42.513 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377958803008] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61248,
msg_type=LEASEQUERY (14), trans_id=0x80eb0c,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 10:53:42.513 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377983981120] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61248,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x80eb0c,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 10:54:04.119 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377950410304] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:58287,
msg_type=LEASEQUERY (14), trans_id=0xd850f7,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 10:54:04.119 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377950410304] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:58287,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xd850f7,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 13:45:39.425 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377950410304] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57157,
msg_type=LEASEQUERY (14), trans_id=0x80031e,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 13:45:39.425 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377950410304] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57157,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x80031e,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 14:04:19.099 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377942017600] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:52139,
msg_type=LEASEQUERY (14), trans_id=0x16ddfa,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-07 14:04:19.100 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377958803008] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:52139,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x16ddfa,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-07 14:10:43.944 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377975588416] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:60457,
msg_type=LEASEQUERY (14), trans_id=0x976d80,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-07 14:10:43.944 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377975588416] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:60457,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x976d80,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-07 14:17:13.209 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377967195712] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:63489,
msg_type=LEASEQUERY (14), trans_id=0x57303e,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-07 14:17:13.209 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377967195712] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:63489,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x57303e,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-07 14:36:00.013 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377950410304] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49899,
msg_type=LEASEQUERY (14), trans_id=0x8c64f6,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-07 14:36:00.014 DEBUG [kea-dhcp6.lease-query-hooks/169542.140377983981120] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49899,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x8c64f6,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-09 10:44:44.681 INFO [kea-dhcp6.lease-query-hooks/169542.140378043058304] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-08-09 10:45:02.403 INFO [kea-dhcp6.lease-query-hooks/1319.140527368636544] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-08-09 10:45:02.570 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527368636544] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-08-21 14:54:10.244 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:53751,
msg_type=LEASEQUERY (14), trans_id=0xeda378,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-21 14:54:10.244 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:53751,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xeda378,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-28 15:05:54.950 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527292655168] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:52882,
msg_type=LEASEQUERY (14), trans_id=0xf6e51c,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-28 15:05:54.950 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527275869760] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:52882,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xf6e51c,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-29 12:49:21.831 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61210,
msg_type=LEASEQUERY (14), trans_id=0x8edf74,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-29 12:49:21.832 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527317833280] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61210,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x8edf74,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-29 12:50:51.647 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527301047872] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61061,
msg_type=LEASEQUERY (14), trans_id=0x55e060,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-29 12:50:51.648 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61061,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x55e060,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-29 14:29:55.678 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:60704,
msg_type=LEASEQUERY (14), trans_id=0xbc1395,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-29 14:29:55.678 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527284262464] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:60704,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xbc1395,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-29 14:36:00.431 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527275869760] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:59021,
msg_type=LEASEQUERY (14), trans_id=0x899573,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-29 14:36:00.432 DEBUG [kea-dhcp6.lease-query-hooks/1319.140527275869760] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:59021,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x899573,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-30 12:26:18.206 INFO [kea-dhcp6.lease-query-hooks/1319.140527368636544] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-08-30 12:36:37.090 INFO [kea-dhcp6.lease-query-hooks/81973.139771584436352] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-08-30 12:36:37.175 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771584436352] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-08-30 12:41:12.216 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771541014080] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61717,
msg_type=LEASEQUERY (14), trans_id=0x423b2b,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00041: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00000:
No relays traversed.
2024-08-30 12:41:12.217 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771507443264] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61717,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x423b2b,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00024: MalformedQuery(8) "malformed D6O_RELAY_ID"
No relays traversed.
2024-08-30 12:47:39.910 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771532621376] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61682,
msg_type=LEASEQUERY (14), trans_id=0x2363a7,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-30 12:47:39.911 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771524228672] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:61682,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x2363a7,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-30 12:58:35.726 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771541014080] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:59384,
msg_type=LEASEQUERY (14), trans_id=0x3f541f,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-30 12:58:35.727 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771541014080] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:59384,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x3f541f,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-30 13:29:16.171 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771532621376] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:63178,
msg_type=LEASEQUERY (14), trans_id=0x2517ad,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-30 13:29:16.171 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771499050560] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:63178,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x2517ad,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-08-30 13:42:33.002 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771490657856] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:58782,
msg_type=LEASEQUERY (14), trans_id=0x8b3353,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-08-30 13:42:33.003 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771490657856] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:58782,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x8b3353,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-09-04 16:47:16.393 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771499050560] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:60983,
msg_type=LEASEQUERY (14), trans_id=0x8e1cd,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
No relays traversed.
2024-09-04 16:47:16.394 DEBUG [kea-dhcp6.lease-query-hooks/81973.139771499050560] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::2, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::2]:60983,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x8e1cd,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:39:34:3a:30:38:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00018: Success(0) "no active leases"
No relays traversed.
2024-09-06 08:39:58.372 INFO [kea-dhcp6.lease-query-hooks/81973.139771584436352] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-09-06 08:39:58.428 INFO [kea-dhcp6.lease-query-hooks/105888.140547073460352] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-09-06 08:39:58.504 DEBUG [kea-dhcp6.lease-query-hooks/105888.140547073460352] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-09-06 08:53:21.022 DEBUG [kea-dhcp6.lease-query-hooks/105888.140546980828736] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49309,
msg_type=LEASEQUERY (14), trans_id=0xc0e629,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-09-06 08:53:21.023 DEBUG [kea-dhcp6.lease-query-hooks/105888.140546980828736] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49309,
msg_type=LEASEQUERY_REPLY (15), trans_id=0xc0e629,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00023: Success(0) "active lease(s) found"
type=00045, len=00232:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00005(IAADDR), len=00024: address=2605:d2c0:1580:255::100, preferred-lft=345, valid-lft=345
type=00046, len=00004: 255 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 08:53:21.023 DEBUG [kea-dhcp6.lease-query-hooks/105888.140546989221440] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49309,
msg_type=LEASEQUERY_DATA (17), trans_id=0xc0e629,
options:
type=00045, len=00233:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00026(IAPREFIX), len=00025: prefix=2605:d2c0:8000::/56, preferred-lft=345, valid-lft=345
type=00046, len=00004: 255 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 08:53:21.024 DEBUG [kea-dhcp6.lease-query-hooks/105888.140547006006848] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:49309,
msg_type=LEASEQUERY_DONE (16), trans_id=0xc0e629,
message contains no options
No relays traversed.
2024-09-06 09:07:13.699 INFO [kea-dhcp6.lease-query-hooks/105888.140547073460352] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-09-06 09:07:13.758 INFO [kea-dhcp6.lease-query-hooks/106209.140395308714112] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-09-06 09:07:13.849 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395308714112] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-09-06 09:18:25.151 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395228067392] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57166,
msg_type=LEASEQUERY (14), trans_id=0x7b8b10,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-09-06 09:18:25.151 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395228067392] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57166,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x7b8b10,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00023: Success(0) "active lease(s) found"
type=00045, len=00232:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00005(IAADDR), len=00024: address=2605:d2c0:1580:255::100, preferred-lft=648, valid-lft=648
type=00046, len=00004: 552 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 09:18:25.152 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395211281984] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57166,
msg_type=LEASEQUERY_DATA (17), trans_id=0x7b8b10,
options:
type=00045, len=00233:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00026(IAPREFIX), len=00025: prefix=2605:d2c0:8000::/56, preferred-lft=648, valid-lft=648
type=00046, len=00004: 552 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 09:18:25.153 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395236460096] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:57166,
msg_type=LEASEQUERY_DONE (16), trans_id=0x7b8b10,
message contains no options
No relays traversed.
2024-09-06 10:26:36.371 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395211281984] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:65201,
msg_type=LEASEQUERY (14), trans_id=0x8b66be,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00072: 3 (uint8) :: (ipv6-address),
options:
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
type=00053, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
No relays traversed.
2024-09-06 10:26:36.372 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395228067392] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:65201,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x8b66be,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00023: Success(0) "active lease(s) found"
type=00045, len=00232:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00005(IAADDR), len=00024: address=2605:d2c0:1580:255::100, preferred-lft=761, valid-lft=761
type=00046, len=00004: 439 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 10:26:36.372 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395253245504] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:65201,
msg_type=LEASEQUERY_DATA (17), trans_id=0x8b66be,
options:
type=00045, len=00233:,
options:
type=00001, len=00010: 00:03:00:01:b8:94:70:fb:20:6e
type=00026(IAPREFIX), len=00025: prefix=2605:d2c0:8000::/56, preferred-lft=761, valid-lft=761
type=00046, len=00004: 439 (uint32)
type=00047, len=00178: fe80::ba94:70ff:fefb:206e (ipv6-address) 0C012605D2C0158002550000000000000003FE80000000000000BA9470FFFEFB206E001200076972622E3230310035001F0002000005830166343A62663A61383A33393A63653A3230000000000000000009004E0C0000000000000000000000000000000000FE80000000000000BA9470FFFEFB206E001200164C41422D5441354B2065746820312F322F312F312F310025000E00000DE95370726F75745F4E4F43 (binary)
No relays traversed.
2024-09-06 10:26:36.372 DEBUG [kea-dhcp6.lease-query-hooks/106209.140395202889280] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:65201,
msg_type=LEASEQUERY_DONE (16), trans_id=0x8b66be,
message contains no options
No relays traversed.
2024-09-16 08:14:05.271 INFO [kea-dhcp6.lease-query-hooks/106209.140395308714112] LEASE_QUERY_UNLOAD_OK Lease Query hooks library unloaded successfully.
2024-09-16 17:15:38.299 INFO [kea-dhcp6.lease-query-hooks/142507.140155604211840] LEASE_QUERY_LOAD_OK Lease Query hooks library loaded successfully.
2024-09-16 17:15:38.368 DEBUG [kea-dhcp6.lease-query-hooks/142507.140155604211840] DHCP6_LEASE_QUERY_PREFIX_LENGTH_LIST the list of prefix lengths to use when searching will be: [ 56 ]
2024-09-16 17:22:58.586 DEBUG [kea-dhcp6.lease-query-hooks/142507.140155557164608] BULK_LEASE_QUERY_QUERY_RECEIVED A bulk lease query packet received from fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:62029,
msg_type=LEASEQUERY (14), trans_id=0x7f32ce,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00044, len=00065: 1 (uint8) :: (ipv6-address),
options:
type=00005(IAADDR), len=00024: address=fc00:d2c0:10:170::23, preferred-lft=0, valid-lft=0
type=00006, len=00016: 18(uint16) 37(uint16) 47(uint16) 15(uint16) 16(uint16) 12(uint16) 100(uint16) 79(uint16)
No relays traversed.
2024-09-16 17:22:58.586 DEBUG [kea-dhcp6.lease-query-hooks/142507.140155498415680] BULK_LEASE_QUERY_RESPONSE_SENT A bulk lease query response sent to fc00:d2c0:10:170::3, details: local_address=[::]:0, remote_address=[fc00:d2c0:10:170::3]:62029,
msg_type=LEASEQUERY_REPLY (15), trans_id=0x7f32ce,
options:
type=00001, len=00031: 00:02:00:00:05:83:01:66:34:3a:62:66:3a:61:38:3a:33:39:3a:63:65:3a:32:30:00:00:00:00:00:00:00
type=00002, len=00014: 00:01:00:01:2d:90:6d:83:00:50:56:be:a7:9a
type=00013, len=00034: NotConfigured(9) "address not in a configured pool"
No relays traversed.
More information about the Kea-users
mailing list