I got DHCPv6-PD aka prefix delegation up and running on a FortiGate. Yes! ✅ Configuring it is tricky since it’s not always clear which options to use. You cannot see everything in the GUI (it even changes depending on other options made later on or selects hidden and wrong default values), hence, you must set specific options via the CLI. I navigated around some bugs and finally got it running. Here we go:
Please refer to my previous blog post about DHCPv6 prefix delegation in detail.
Setup Notes
This is the basic lab, showing the ISP connection (green box, though not of interest for the following configs), as well as the Internet connection from the Forti (red box) and the internal clients (blue box):
- I’m using a FortiGate FG-60F with FortiOS 7.6.1.
- The wan1 interface is attached to an AVM FRITZ!BOX 7560 with FRITZ!OS 07.30, acting as the DHCPv6 server for addresses (IA_NA) as well as for prefixes (IA_PD, handing out /62 prefixes).
- Have a look at RFC 8415 “Dynamic Host Configuration Protocol for IPv6 (DHCPv6)” respectively the IANA “Dynamic Host Configuration Protocol for IPv6 (DHCPv6)” for more details concerning the DHCPv6 option types.
- The internal interface shall use a /64 out of the delegated prefix.
- With FortiOS 7.4.6, the FortiGate did not succeed in requesting anything over DHCPv6 at all. I’ve no idea why. Some notes here.
Eventually, I tried an upgrade to FortiOS 7.6.1, in which it worked.The same problem still exists with FortiOS 7.6.1. In the end, disabling/enabling the DHCPv6 client on the wan1 interface made it work. - The FortiGate receives its default route through the RA from the Fritzbox. (Remember that DHCPv6 does NOT send a default route at all. Everyone must rely on RAs in any case!)
Though possible, I did not succeed in configuring the RA for the internal interface, serving a /64 out of the delegated range for the SLAAC method. Within the RA, the prefix did not show up at all. :(Most likely, I forgot to set the IAPD value with “set delegated-prefix-iaid 5” within the “config ip6-delegated-prefix-list” section since I was able to get this running on some later scenarios.- Nevertheless, I configured the internal interface to send the RA with the M-flag while setting up a stateful DHCPv6 server on the FortiGate itself. With this option, I was able to hand out a /64 to the internal clients. ✅
- On several configuration options, you can choose a “subnet” which defaults to “::/0” in the GUI as well as in the CLI. This is like an identifier to set the n-th network within the delegated prefix. Always change this to something with a /64 (rather than the default /0) to get the job done correctly. Otherwise, the FortiGate chooses the full delegated prefix such as a /62 (rather than a /64) and uses it on its interface, which stands against any best practice, will kill SLAAC, makes me horribly sad, and so on.
- Within the configuration, you have to choose an “IAPD” value which defaults to 5. This value is randomly chosen by Fortinet and used later on to identify the delegated prefix. I left it by this value of 5. The ugly thing: You have to set this value for the stateful DHCPv6 server as well, but this cannot be done through the GUI. If you activate the DHCPv6 server with the “Delegated” IP mode, you’ll get an error in the GUI. That is: At least for this single entry you must use the CLI.
- At least in FortiOS 7.6.1, there is a bug in which the FortiGate does not reply to RSs with RAs. That is: Your clients won’t get the default route until the first RA that is sent on a regular basis by the Forti is received by those clients. As a workaround, I’ve set the min- and max-interval values to 10, respectively 30 seconds. Since the defaults are way higher (600 seconds = 10 minutes), clients have to wait really long until IPv6 is up and running.
- Another bug is related to the output of the routing table for IPv6 since it does not show the default route that is gathered from the RA on the wan1 interface. Funnily, this is only true for the get router info6 routing-table but not for the diagnose ipv6 route list output.
- Other quite useful information about FortiGate’s DHCPv6 configuration options can be found here and there.
Configuration of the wan1 Interface
Through the GUI (kudos to Fortinet, in that we can now configure more IPv6 stuff through the GUI ;)). Note the “IAPD 5” without a prefix hint.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
config system interface edit "wan1" set vdom "root" set mode dhcp set allowaccess ping config ipv6 set ip6-mode dhcp set ip6-allowaccess ping set dhcp6-prefix-delegation enable config dhcp6-iapd-list edit 5 next end end next end |
Configuration of the internal Interface
Basics are possible through the GUI, while you MUST set some values through the CLI later.
Here is everything from the CLI in which you can set the “delegated-prefix-iaid 5” for the DHCPv6 server. Note that I changed the “ip6-other-flag” to “disable” since you only need the M-flag for stateful DHCPv6:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
config system interface edit "internal" set vdom "root" config ipv6 set ip6-mode delegated set ip6-allowaccess ping https ssh set ip6-send-adv enable set ip6-manage-flag enable set ip6-other-flag disable set ip6-max-interval 30 set ip6-min-interval 10 set ip6-delegated-prefix-iaid 5 set ip6-upstream-interface "wan1" set ip6-subnet ::1/64 end next end config system dhcp6 server edit 1 set dns-service delegated set subnet ::/64 set interface "internal" set upstream-interface "wan1" set delegated-prefix-iaid 5 set ip-mode delegated next end |
Information
Some information can be gathered through the GUI and the CLI. Note the missing IPv6 default route in the GUI as well as in the first CLI command, while the second one lists the “gwy”:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
FortiGate-60F # get router info6 routing-table IPv6 Routing Table Codes: K - kernel route, C - connected, S - static, R - RIP, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, B - BGP, V - BGP VPNv6 * - candidate default Timers: Uptime Routing table for VRF=0 C ::1/128 via ::, root, 00:19:47 C 2003:c6:af32:8400:6d5:90ff:fe42:8612/128 via ::, wan1, 00:07:38 C 2003:c6:af32:84fc::/64 via ::, internal, 00:03:47 FortiGate-60F # FortiGate-60F # FortiGate-60F # FortiGate-60F # diagnose ipv6 route list vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=80200000 prio=0 dst:::1/128 dev=18(root) pmtu=16436 vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=80200000 prio=0 dst:2003:c6:af32:8400:6d5:90ff:fe42:8612/128 dev=18(root) pmtu=16436 vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=2(kernel) flag=00000000 prio=256 dst:2003:c6:af32:8400:6d5:90ff:fe42:8612/128 dev=5(wan1) pmtu=1492 vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=00300000 prio=0 dst:2003:c6:af32:84fc::/128 dev=18(root) pmtu=16436 vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=80200000 prio=0 dst:2003:c6:af32:84fc::1/128 dev=18(root) pmtu=16436 vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=0(unspec) flag=01000200 prio=0 dst:2003:c6:af32:84fc::2/128 dev=23(internal) pmtu=1500 vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=2(kernel) flag=00400000 prio=256 dst:2003:c6:af32:84fc::/64 dev=23(internal) pmtu=1500 vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=00300000 prio=0 dst:fe80::/128 dev=18(root) pmtu=16436 vf=0 vrf=0 tbl=65534 type=02(local) protocol=0(unspec) flag=00300000 prio=0 dst:fe80::/128 dev=18(root) pmtu=16436 [...] vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=3(boot) flag=00000000 prio=256 dst:ff00::/8 dev=5(wan1) pmtu=1492 vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=3(boot) flag=00000000 prio=256 dst:ff00::/8 dev=6(wan2) pmtu=1500 vf=0 vrf=0 tbl=65534 type=01(unicast) protocol=2(kernel) flag=00450000 prio=1024 gwy:fe80::7eff:4dff:fe93:9b5 dev=5(wan1) pmtu=1492 vf=0 vrf=0 tbl=0 type=07(unreachable) protocol=2(kernel) flag=00200000 prio=-1 dev=18(root) pmtu=16436 FortiGate-60F # |
The following Wireshark screenshot shows the DHCPv6 messages between the FortiGate (wan1) and the Fritzbox. The first reply (message nr. 6) is one that wasn’t working correctly (status code 13 = no binding), for whatever reason. I disabled/enabled DHCPv6 on wan1 again. Messages 18-21 are the correct ones, handing out the /62 prefix:
This is the DHCPv6 debug log during the complete startup of the wan1 interface. Maybe someone finds hints about the mentioned DHCPv6 “no binding” issues:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 |
=~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2024.12.19 09:13:30 =~=~=~=~=~=~=~=~=~=~=~= login as: admin admin@192.168.1.99's password: FortiGate-60F # diagnose debug reset FortiGate-60F # diagnose debug console timestamp enable FortiGate-60F # diagnose debug application dhcp6c 255 Debug messages will be on for 30 minutes. FortiGate-60F # diagnose debug enable FortiGate-60F # 2024-12-19 00:14:10 [debug]dhcp6_check_timer() called 2024-12-19 00:14:10 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:14:21 [debug]dhcp6_check_timer() called 2024-12-19 00:14:21 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:14:32 [debug]dhcp6_check_timer() called 2024-12-19 00:14:32 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:14:35 [info]dhcp6c_kernel_event_handler() dhcp6c_kernel_event_handler called 2024-12-19 00:14:35 [info]dhcp6c_intf_changed() intf changed. caller=0x92bae8 2024-12-19 00:14:35 [debug]dhcp6_check_timer() called 2024-12-19 00:14:35 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:36 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:36 [debug]dhcp6_check_timer() called 2024-12-19 00:14:36 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:36 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:36 [debug]dhcp6_check_timer() called 2024-12-19 00:14:36 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:14:36 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:14:36 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:14:36 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:14:36 [debug]dhcp6_check_timer() called 2024-12-19 00:14:36 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:14:36 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:36 [debug]dhcp6_check_timer() called 2024-12-19 00:14:36 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:14:37 [info]dhcp6c_kernel_event_handler() dhcp6c_kernel_event_handler called 2024-12-19 00:14:37 [info]dhcp6c_intf_changed() intf changed. caller=0x92bae8 2024-12-19 00:14:37 [debug]dhcp6_check_timer() called 2024-12-19 00:14:37 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:39 [info]dhcp6c_kernel_event_handler() dhcp6c_kernel_event_handler called 2024-12-19 00:14:39 [info]dhcp6c_intf_changed() intf changed. caller=0x92bae8 2024-12-19 00:14:39 [debug]dhcp6_check_timer() called 2024-12-19 00:14:39 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:40 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:40 [info]dhcp6c_nlm_handler() Restart and renew interface wan1. 2024-12-19 00:14:40 [debug]dhcp6_remove_event() removing an event on wan1, state=SOLICIT 2024-12-19 00:14:40 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:14:40 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=76 2024-12-19 00:14:40 [info]dhcp6c_nlm_handler() Restart and renew interface wan1. 2024-12-19 00:14:40 [debug]dhcp6_remove_event() removing an event on wan1, state=INIT 2024-12-19 00:14:40 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:14:40 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=188 2024-12-19 00:14:40 [info]dhcp6c_nlm_handler() Restart and renew interface wan1. 2024-12-19 00:14:40 [debug]dhcp6_remove_event() removing an event on wan1, state=INIT 2024-12-19 00:14:40 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:14:40 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:14:40 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=561 2024-12-19 00:14:40 [debug]dhcp6_check_timer() called 2024-12-19 00:14:40 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:40 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:40 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:14:40 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:14:40 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:14:40 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:14:40 [debug]dhcp6_check_timer() called 2024-12-19 00:14:40 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:40 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:40 [debug]dhcp6_check_timer() called 2024-12-19 00:14:40 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:43 [debug]dhcp6_check_timer() called 2024-12-19 00:14:43 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:14:43 [debug]client6_send() a new XID (503090) is generated 2024-12-19 00:14:43 [debug]copy_option() set client ID (len 10) 2024-12-19 00:14:43 [debug]copyout_option() set identity association 2024-12-19 00:14:43 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:14:43 [debug]copy_option() set option request (len 4) 2024-12-19 00:14:43 [debug]copyout_option() set IA_PD 2024-12-19 00:14:43 [debug]client6_send() send solicit to ff02::1:2%wan1 2024-12-19 00:14:43 [debug]dhcp6_reset_timer() reset a timer on wan1, state=SOLICIT, timeo=0, retrans=1049 2024-12-19 00:14:43 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:14:43 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:14:43 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:14:43 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:14:43 [debug]dhcp6_check_timer() called 2024-12-19 00:14:43 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:43 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:14:43 [debug]client6_recv() receive advertise from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:14:43 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:14:43 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option preference, len 1 2024-12-19 00:14:43 [debug] preference: 0 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option DNS, len 16 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option opt_86, len 16 2024-12-19 00:14:43 [info]dhcp6_get_options() unknown or unexpected DHCP6 option opt_86, len 16 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option identity association, len 40 2024-12-19 00:14:43 [debug] IA_NA: ID=5, T1=1800, T2=2880 2024-12-19 00:14:43 [debug]copyin_option() get DHCP option IA address, len 24 2024-12-19 00:14:43 [debug]copyin_option() IA_NA address: 2003:c6:af32:8400:6d5:90ff:fe42:8612 pltime=3600 vltime=7200 2024-12-19 00:14:43 [debug]dhcp6_get_options() get DHCP option IA_PD, len 41 2024-12-19 00:14:43 [debug] IA_PD: ID=5, T1=1800, T2=2880 2024-12-19 00:14:43 [debug]copyin_option() get DHCP option IA_PD prefix, len 25 2024-12-19 00:14:43 [debug]copyin_option() IA_PD prefix: 2003:c6:af32:84fc::/62 pltime=3600 vltime=7200 2024-12-19 00:14:43 [debug]client6_recvadvert() server ID: 00:03:00:01:7c:ff:4d:93:09:b5, pref=0 2024-12-19 00:14:43 [debug]client6_recvadvert() reset timer for wan1 to 0.990649 2024-12-19 00:14:43 [debug]dhcp6_check_timer() called 2024-12-19 00:14:43 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:45 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:14:45 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:14:45 [debug]dhcp6_check_timer() called 2024-12-19 00:14:45 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:14:45 [debug]select_server() picked a server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:14:45 [debug]client6_send() a new XID (1cf373) is generated 2024-12-19 00:14:45 [debug]copy_option() set client ID (len 10) 2024-12-19 00:14:45 [debug]copy_option() set server ID (len 10) 2024-12-19 00:14:45 [debug]copyout_option() set IA address 2024-12-19 00:14:45 [debug]copyout_option() set identity association 2024-12-19 00:14:45 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:14:45 [debug]copy_option() set option request (len 4) 2024-12-19 00:14:45 [debug]copyout_option() set IA_PD prefix 2024-12-19 00:14:45 [debug]copyout_option() set IA_PD 2024-12-19 00:14:45 [debug]client6_send() send request to ff02::1:2%wan1 2024-12-19 00:14:45 [debug]dhcp6_reset_timer() reset a timer on wan1, state=REQUEST, timeo=0, retrans=1080 2024-12-19 00:14:45 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:45 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:14:45 [debug]client6_recv() receive reply from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:14:45 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:14:45 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:14:45 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:14:45 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:14:45 [debug]dhcp6_get_options() get DHCP option status code, len 16 2024-12-19 00:14:45 [debug] status code: no binding 2024-12-19 00:14:45 [info]client6_recvreply() status code: no binding 2024-12-19 00:14:45 [debug]dhcp6c_ha_sync_send_lease_to() [dhcp6c_ha_sync_send_lease_to] serialno=' (null)', intf='wan1' 2024-12-19 00:14:45 [debug]dhcp6c_ha_sync_send_lease_to() send DHCP6_HA_SYNC_T_LEASE 2024-12-19 00:14:45 [debug]dhcp6_remove_event() removing an event on wan1, state=REQUEST 2024-12-19 00:14:45 [debug]dhcp6_remove_event() removing server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:14:45 [debug]client6_recvreply() got an expected reply, sleeping. 2024-12-19 00:14:45 [debug]dhcp6_check_timer() called 2024-12-19 00:14:45 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:48 [debug]dhcp6_check_timer() called 2024-12-19 00:14:48 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:14:48 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:14:48 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:14:48 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:14:48 [debug]dhcp6_check_timer() called 2024-12-19 00:14:48 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:50 [debug]dhcp6_check_timer() called 2024-12-19 00:14:50 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:52 [debug]dhcp6_check_timer() called 2024-12-19 00:14:52 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:54 [debug]dhcp6_check_timer() called 2024-12-19 00:14:54 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:56 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:14:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:14:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:14:56 [debug]dhcp6_check_timer() called 2024-12-19 00:14:56 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:14:59 [debug]dhcp6_check_timer() called 2024-12-19 00:14:59 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:14:59 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:14:59 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:14:59 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:14:59 [debug]dhcp6_check_timer() called 2024-12-19 00:14:59 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:01 [debug]dhcp6_check_timer() called 2024-12-19 00:15:01 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:03 [debug]dhcp6_check_timer() called 2024-12-19 00:15:03 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:05 [debug]dhcp6_check_timer() called 2024-12-19 00:15:05 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:07 [debug]dhcp6_check_timer() called 2024-12-19 00:15:07 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:09 [debug]dhcp6_check_timer() called 2024-12-19 00:15:09 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:11 [debug]dhcp6_check_timer() called 2024-12-19 00:15:11 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:13 [debug]dhcp6_check_timer() called 2024-12-19 00:15:13 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:15 [debug]dhcp6_check_timer() called 2024-12-19 00:15:15 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:17 [debug]dhcp6_check_timer() called 2024-12-19 00:15:17 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:19 [debug]dhcp6_check_timer() called 2024-12-19 00:15:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:21 [debug]dhcp6_check_timer() called 2024-12-19 00:15:21 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:23 [debug]dhcp6_check_timer() called 2024-12-19 00:15:23 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:25 [debug]dhcp6_check_timer() called 2024-12-19 00:15:25 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:26 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:15:26 [debug]dhcp6_check_timer() called 2024-12-19 00:15:26 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:29 [debug]dhcp6_check_timer() called 2024-12-19 00:15:29 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:15:29 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:15:29 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:15:29 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:15:29 [debug]dhcp6_check_timer() called 2024-12-19 00:15:29 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:29 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:15:29 [debug]dhcp6_check_timer() called 2024-12-19 00:15:29 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:31 [debug]dhcp6_check_timer() called 2024-12-19 00:15:31 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:33 [debug]dhcp6_check_timer() called 2024-12-19 00:15:33 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:35 [debug]dhcp6_check_timer() called 2024-12-19 00:15:35 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:37 [debug]dhcp6_check_timer() called 2024-12-19 00:15:37 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:39 [debug]dhcp6_check_timer() called 2024-12-19 00:15:39 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:41 [debug]dhcp6_check_timer() called 2024-12-19 00:15:41 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:43 [debug]dhcp6_check_timer() called 2024-12-19 00:15:43 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:45 [debug]dhcp6_check_timer() called 2024-12-19 00:15:45 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:47 [debug]dhcp6_check_timer() called 2024-12-19 00:15:47 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:49 [debug]dhcp6_check_timer() called 2024-12-19 00:15:49 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:51 [debug]dhcp6_check_timer() called 2024-12-19 00:15:51 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:53 [debug]dhcp6_check_timer() called 2024-12-19 00:15:53 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:55 [debug]dhcp6_check_timer() called 2024-12-19 00:15:55 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:57 [debug]dhcp6_check_timer() called 2024-12-19 00:15:57 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:15:59 [debug]dhcp6_check_timer() called 2024-12-19 00:15:59 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:01 [debug]dhcp6_check_timer() called 2024-12-19 00:16:01 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:03 [debug]dhcp6_check_timer() called 2024-12-19 00:16:03 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:05 [debug]dhcp6_check_timer() called 2024-12-19 00:16:05 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:07 [debug]dhcp6_check_timer() called 2024-12-19 00:16:07 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:09 [debug]dhcp6_check_timer() called 2024-12-19 00:16:09 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:11 [debug]dhcp6_check_timer() called 2024-12-19 00:16:11 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:14 [debug]dhcp6_check_timer() called 2024-12-19 00:16:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:16 [debug]dhcp6_check_timer() called 2024-12-19 00:16:16 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:18 [debug]dhcp6_check_timer() called 2024-12-19 00:16:18 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:20 [debug]dhcp6_check_timer() called 2024-12-19 00:16:20 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:22 [debug]dhcp6_check_timer() called 2024-12-19 00:16:22 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:24 [debug]dhcp6_check_timer() called 2024-12-19 00:16:24 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:26 [debug]dhcp6_check_timer() called 2024-12-19 00:16:26 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:26 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:16:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:16:26 [debug]dhcp6_check_timer() called 2024-12-19 00:16:26 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:29 [debug]dhcp6_check_timer() called 2024-12-19 00:16:29 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:16:29 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:16:29 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:16:29 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:16:29 [debug]dhcp6_check_timer() called 2024-12-19 00:16:29 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:31 [debug]dhcp6_check_timer() called 2024-12-19 00:16:31 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:33 [debug]dhcp6_check_timer() called 2024-12-19 00:16:33 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:35 [debug]dhcp6_check_timer() called 2024-12-19 00:16:35 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:37 [debug]dhcp6_check_timer() called 2024-12-19 00:16:37 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:39 [debug]dhcp6_check_timer() called 2024-12-19 00:16:39 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:41 [debug]dhcp6_check_timer() called 2024-12-19 00:16:41 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:43 [debug]dhcp6_check_timer() called 2024-12-19 00:16:43 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:45 [debug]dhcp6_check_timer() called 2024-12-19 00:16:45 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:47 [debug]dhcp6_check_timer() called 2024-12-19 00:16:47 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:49 [debug]dhcp6_check_timer() called 2024-12-19 00:16:49 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:51 [debug]dhcp6_check_timer() called 2024-12-19 00:16:51 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:53 [debug]dhcp6_check_timer() called 2024-12-19 00:16:53 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:53 [debug]dhcp6_check_timer() called 2024-12-19 00:16:53 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:55 [debug]dhcp6_check_timer() called 2024-12-19 00:16:55 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:55 [debug]dhcp6_check_timer() called 2024-12-19 00:16:55 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:16:57 [debug]dhcp6_check_timer() called 2024-12-19 00:16:57 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:00 [debug]dhcp6_check_timer() called 2024-12-19 00:17:00 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:00 [debug]dhcp6_check_timer() called 2024-12-19 00:17:00 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:02 [debug]dhcp6_check_timer() called 2024-12-19 00:17:02 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:04 [debug]dhcp6_check_timer() called 2024-12-19 00:17:04 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:07 [info]dhcp6c_intf_changed() intf changed. caller=0x9273d0 2024-12-19 00:17:07 [debug]dhcp6_check_timer() called 2024-12-19 00:17:07 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:07 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:07 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:07 [debug]dhcp6_check_timer() called 2024-12-19 00:17:07 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:10 [debug]dhcp6_check_timer() called 2024-12-19 00:17:10 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:17:10 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:17:10 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:17:10 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:17:10 [debug]interface_has_changed() new dhcp6c options detected 2024-12-19 00:17:10 [debug]dhcp6c_resource_update() dhcp6client: detected changed interface, reinterfaceuring 2024-12-19 00:17:10 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:17:10 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:17:10 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:17:10 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=459 2024-12-19 00:17:10 [debug]dhcp6_check_timer() called 2024-12-19 00:17:10 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:12 [debug]dhcp6_check_timer() called 2024-12-19 00:17:12 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:17:12 [debug]client6_send() a new XID (b4c06e) is generated 2024-12-19 00:17:12 [debug]copy_option() set client ID (len 10) 2024-12-19 00:17:12 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:17:12 [debug]copy_option() set option request (len 4) 2024-12-19 00:17:12 [debug]copyout_option() set IA_PD 2024-12-19 00:17:12 [debug]client6_send() send solicit to ff02::1:2%wan1 2024-12-19 00:17:12 [debug]dhcp6_reset_timer() reset a timer on wan1, state=SOLICIT, timeo=0, retrans=1046 2024-12-19 00:17:12 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:12 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:12 [debug]dhcp6_check_timer() called 2024-12-19 00:17:12 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:12 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:17:12 [debug]client6_recv() receive advertise from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:17:12 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:17:12 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option preference, len 1 2024-12-19 00:17:12 [debug] preference: 0 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option DNS, len 16 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option opt_86, len 16 2024-12-19 00:17:12 [info]dhcp6_get_options() unknown or unexpected DHCP6 option opt_86, len 16 2024-12-19 00:17:12 [debug]dhcp6_get_options() get DHCP option IA_PD, len 41 2024-12-19 00:17:12 [debug] IA_PD: ID=5, T1=1800, T2=2880 2024-12-19 00:17:12 [debug]copyin_option() get DHCP option IA_PD prefix, len 25 2024-12-19 00:17:12 [debug]copyin_option() IA_PD prefix: 2003:c6:af32:84fc::/62 pltime=3600 vltime=7200 2024-12-19 00:17:12 [debug]client6_recvadvert() server ID: 00:03:00:01:7c:ff:4d:93:09:b5, pref=0 2024-12-19 00:17:12 [debug]client6_recvadvert() reset timer for wan1 to 0.991872 2024-12-19 00:17:12 [debug]dhcp6_check_timer() called 2024-12-19 00:17:12 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x9273d0 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:17:14 [debug]select_server() picked a server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:17:14 [debug]client6_send() a new XID (f583c6) is generated 2024-12-19 00:17:14 [debug]copy_option() set client ID (len 10) 2024-12-19 00:17:14 [debug]copy_option() set server ID (len 10) 2024-12-19 00:17:14 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:17:14 [debug]copy_option() set option request (len 4) 2024-12-19 00:17:14 [debug]copyout_option() set IA_PD prefix 2024-12-19 00:17:14 [debug]copyout_option() set IA_PD 2024-12-19 00:17:14 [debug]client6_send() send request to ff02::1:2%wan1 2024-12-19 00:17:14 [debug]dhcp6_reset_timer() reset a timer on wan1, state=REQUEST, timeo=0, retrans=949 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:17:14 [debug]client6_recv() receive reply from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:17:14 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:17:14 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option preference, len 1 2024-12-19 00:17:14 [debug] preference: 0 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option DNS, len 16 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option opt_86, len 16 2024-12-19 00:17:14 [info]dhcp6_get_options() unknown or unexpected DHCP6 option opt_86, len 16 2024-12-19 00:17:14 [debug]dhcp6_get_options() get DHCP option IA_PD, len 41 2024-12-19 00:17:14 [debug] IA_PD: ID=5, T1=1800, T2=2880 2024-12-19 00:17:14 [debug]copyin_option() get DHCP option IA_PD prefix, len 25 2024-12-19 00:17:14 [debug]copyin_option() IA_PD prefix: 2003:c6:af32:84fc::/62 pltime=3600 vltime=7200 2024-12-19 00:17:14 [debug]info_printf() nameserver[0] 2620:fe::fe 2024-12-19 00:17:14 [debug]client6_process() dynamic dns1=[2620:fe::fe] 2024-12-19 00:17:14 [debug]get_ia() make an IA: PD-5 2024-12-19 00:17:14 [debug]update_prefix() create a prefix 2003:c6:af32:84fc::/62 pltime=3600, vltime=7200 2024-12-19 00:17:14 [debug]dhcp6c_ha_sync_send_lease_to() [dhcp6c_ha_sync_send_lease_to] serialno=' (null)', intf='wan1' 2024-12-19 00:17:14 [debug]dhcp6c_ha_sync_send_lease_to() send DHCP6_HA_SYNC_T_LEASE 2024-12-19 00:17:14 [debug]dhcp6_remove_event() removing an event on wan1, state=REQUEST 2024-12-19 00:17:14 [debug]dhcp6_remove_event() removing server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:17:14 [debug]client6_recvreply() got an expected reply, sleeping. 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:14 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:14 [info]dhcp6c_nlm_handler() Restart and renew interface wan1. 2024-12-19 00:17:14 [debug]remove_ia() remove an IA: PD-5 2024-12-19 00:17:14 [debug]remove_siteprefix() remove a site prefix 2003:c6:af32:84fc::/62 2024-12-19 00:17:14 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:17:14 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:17:14 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:17:14 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=601 2024-12-19 00:17:14 [info]dhcp6c_nlm_handler() Restart and renew interface wan1. 2024-12-19 00:17:14 [debug]dhcp6_remove_event() removing an event on wan1, state=INIT 2024-12-19 00:17:14 [warning]uncache_intf6_info() delete interface wan1 cache 2024-12-19 00:17:14 [debug]dhcp6c_intf_get_duid() called 2024-12-19 00:17:14 [debug]dhcp6c_intf_get_duid() Generated a new DUID: 00:03:00:01:04:d5:90:42:86:12. 2024-12-19 00:17:14 [debug]dhcp6_reset_timer() reset a timer on wan1, state=INIT, timeo=0, retrans=749 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:14 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:14 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:14 [debug]dhcp6_check_timer() called 2024-12-19 00:17:14 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:16 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:16 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:16 [debug]dhcp6_check_timer() called 2024-12-19 00:17:16 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:17:16 [debug]client6_send() a new XID (620a9f) is generated 2024-12-19 00:17:16 [debug]copy_option() set client ID (len 10) 2024-12-19 00:17:16 [debug]copyout_option() set identity association 2024-12-19 00:17:16 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:17:16 [debug]copy_option() set option request (len 4) 2024-12-19 00:17:16 [debug]copyout_option() set IA_PD 2024-12-19 00:17:16 [debug]client6_send() send solicit to ff02::1:2%wan1 2024-12-19 00:17:16 [debug]dhcp6_reset_timer() reset a timer on wan1, state=SOLICIT, timeo=0, retrans=1085 2024-12-19 00:17:16 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:16 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:17:16 [debug]client6_recv() receive advertise from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:17:16 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:17:16 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option preference, len 1 2024-12-19 00:17:16 [debug] preference: 0 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option DNS, len 16 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option opt_86, len 16 2024-12-19 00:17:16 [info]dhcp6_get_options() unknown or unexpected DHCP6 option opt_86, len 16 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option identity association, len 40 2024-12-19 00:17:16 [debug] IA_NA: ID=5, T1=1800, T2=2880 2024-12-19 00:17:16 [debug]copyin_option() get DHCP option IA address, len 24 2024-12-19 00:17:16 [debug]copyin_option() IA_NA address: 2003:c6:af32:8400:6d5:90ff:fe42:8612 pltime=3600 vltime=7200 2024-12-19 00:17:16 [debug]dhcp6_get_options() get DHCP option IA_PD, len 41 2024-12-19 00:17:16 [debug] IA_PD: ID=5, T1=1800, T2=2880 2024-12-19 00:17:16 [debug]copyin_option() get DHCP option IA_PD prefix, len 25 2024-12-19 00:17:16 [debug]copyin_option() IA_PD prefix: 2003:c6:af32:84fc::/62 pltime=3600 vltime=7200 2024-12-19 00:17:16 [debug]client6_recvadvert() server ID: 00:03:00:01:7c:ff:4d:93:09:b5, pref=0 2024-12-19 00:17:16 [debug]client6_recvadvert() reset timer for wan1 to 0.988651 2024-12-19 00:17:16 [debug]dhcp6_check_timer() called 2024-12-19 00:17:16 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [debug]dhcp6_check_timer() timer func=0x9274f0 2024-12-19 00:17:19 [debug]select_server() picked a server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:17:19 [debug]client6_send() a new XID (ad2c8a) is generated 2024-12-19 00:17:19 [debug]copy_option() set client ID (len 10) 2024-12-19 00:17:19 [debug]copy_option() set server ID (len 10) 2024-12-19 00:17:19 [debug]copyout_option() set IA address 2024-12-19 00:17:19 [debug]copyout_option() set identity association 2024-12-19 00:17:19 [debug]copy_option() set elapsed time (len 2) 2024-12-19 00:17:19 [debug]copy_option() set option request (len 4) 2024-12-19 00:17:19 [debug]copyout_option() set IA_PD prefix 2024-12-19 00:17:19 [debug]copyout_option() set IA_PD 2024-12-19 00:17:19 [debug]client6_send() send request to ff02::1:2%wan1 2024-12-19 00:17:19 [debug]dhcp6_reset_timer() reset a timer on wan1, state=REQUEST, timeo=0, retrans=1022 2024-12-19 00:17:19 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:17:19 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:17:19 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:17:19 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]client6_mainloop() msg received, sock =11 2024-12-19 00:17:19 [debug]client6_recv() receive reply from fe80::7eff:4dff:fe93:9b5%wan1 on wan1 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option client ID, len 10 2024-12-19 00:17:19 [debug] DUID: 00:03:00:01:04:d5:90:42:86:12 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option server ID, len 10 2024-12-19 00:17:19 [debug] DUID: 00:03:00:01:7c:ff:4d:93:09:b5 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option preference, len 1 2024-12-19 00:17:19 [debug] preference: 0 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option DNS, len 16 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option opt_86, len 16 2024-12-19 00:17:19 [info]dhcp6_get_options() unknown or unexpected DHCP6 option opt_86, len 16 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option identity association, len 40 2024-12-19 00:17:19 [debug] IA_NA: ID=5, T1=1800, T2=2880 2024-12-19 00:17:19 [debug]copyin_option() get DHCP option IA address, len 24 2024-12-19 00:17:19 [debug]copyin_option() IA_NA address: 2003:c6:af32:8400:6d5:90ff:fe42:8612 pltime=3600 vltime=7200 2024-12-19 00:17:19 [debug]dhcp6_get_options() get DHCP option IA_PD, len 41 2024-12-19 00:17:19 [debug] IA_PD: ID=5, T1=1800, T2=2880 2024-12-19 00:17:19 [debug]copyin_option() get DHCP option IA_PD prefix, len 25 2024-12-19 00:17:19 [debug]copyin_option() IA_PD prefix: 2003:c6:af32:84fc::/62 pltime=3600 vltime=7200 2024-12-19 00:17:19 [debug]info_printf() nameserver[0] 2620:fe::fe 2024-12-19 00:17:19 [debug]client6_process() dynamic dns1=[2620:fe::fe] 2024-12-19 00:17:19 [debug]get_ia() make an IA: PD-5 2024-12-19 00:17:19 [debug]update_prefix() create a prefix 2003:c6:af32:84fc::/62 pltime=3600, vltime=7200 2024-12-19 00:17:19 [debug]get_ia() make an IA: NA-5 2024-12-19 00:17:19 [debug]update_address() create an address 2003:c6:af32:8400:6d5:90ff:fe42:8612 pltime=3600, vltime=7200 2024-12-19 00:17:19 [debug]dhcp6c_ha_sync_send_lease_to() [dhcp6c_ha_sync_send_lease_to] serialno=' (null)', intf='wan1' 2024-12-19 00:17:19 [debug]dhcp6c_ha_sync_send_lease_to() send DHCP6_HA_SYNC_T_LEASE 2024-12-19 00:17:19 [debug]dhcp6_remove_event() removing an event on wan1, state=REQUEST 2024-12-19 00:17:19 [debug]dhcp6_remove_event() removing server (ID: 00:03:00:01:7c:ff:4d:93:09:b5) 2024-12-19 00:17:19 [debug]client6_recvreply() got an expected reply, sleeping. 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:19 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:19 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:19 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]client6_mainloop() cmdb msg received, sock =5 2024-12-19 00:17:19 [info]dhcp6c_intf_changed() intf changed. caller=0x23f9be8 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:19 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:19 [debug]dhcp6_check_timer() called 2024-12-19 00:17:19 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:20 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:20 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:20 [debug]dhcp6_check_timer() called 2024-12-19 00:17:20 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:20 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:20 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:20 [debug]dhcp6_check_timer() called 2024-12-19 00:17:20 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:23 [debug]dhcp6_check_timer() called 2024-12-19 00:17:23 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:17:23 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:17:23 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:17:23 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:17:23 [debug]dhcp6_check_timer() called 2024-12-19 00:17:23 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:17:30 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:30 [debug]dhcp6_check_timer() called 2024-12-19 00:17:30 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:17:41 [debug]dhcp6_check_timer() called 2024-12-19 00:17:41 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:17:52 [debug]dhcp6_check_timer() called 2024-12-19 00:17:52 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:17:56 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:17:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:17:56 [debug]dhcp6_check_timer() called 2024-12-19 00:17:56 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:17:59 [debug]dhcp6_check_timer() called 2024-12-19 00:17:59 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:17:59 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:17:59 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:17:59 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:17:59 [debug]dhcp6_check_timer() called 2024-12-19 00:17:59 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:10 [debug]dhcp6_check_timer() called 2024-12-19 00:18:10 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:15 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:18:15 [debug]dhcp6_check_timer() called 2024-12-19 00:18:15 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:15 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:18:15 [debug]dhcp6_check_timer() called 2024-12-19 00:18:15 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:25 [debug]dhcp6_check_timer() called 2024-12-19 00:18:25 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:26 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:18:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:18:26 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:18:26 [debug]dhcp6_check_timer() called 2024-12-19 00:18:26 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:18:29 [debug]dhcp6_check_timer() called 2024-12-19 00:18:29 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:18:29 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:18:29 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:18:29 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:18:29 [debug]dhcp6_check_timer() called 2024-12-19 00:18:29 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:40 [debug]dhcp6_check_timer() called 2024-12-19 00:18:40 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:51 [debug]dhcp6_check_timer() called 2024-12-19 00:18:51 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:18:56 [info]dhcp6c_netlink_event_handler() netlink event is received. 2024-12-19 00:18:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:18:56 [info]dhcp6c_intf_changed() intf changed. caller=0x92be04 2024-12-19 00:18:56 [debug]dhcp6_check_timer() called 2024-12-19 00:18:56 [info]client6_mainloop() timeout=2 sec, cfd=5, kfd=6 2024-12-19 00:18:59 [debug]dhcp6_check_timer() called 2024-12-19 00:18:59 [debug]dhcp6_check_timer() timer func=0x926788 2024-12-19 00:18:59 [debug]dhcp6c_resource_update() dhcp6client: checking if we need to reinterfaceure 2024-12-19 00:18:59 [debug]dhcp6c_resource_update() modem is down 2024-12-19 00:18:59 [debug]interface_has_changed() intf wan1 vdom root HA status old:1 new:1 2024-12-19 00:18:59 [debug]dhcp6_check_timer() called 2024-12-19 00:18:59 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 2024-12-19 00:19:10 [debug]dhcp6_check_timer() called 2024-12-19 00:19:10 [info]client6_mainloop() timeout=10 sec, cfd=5, kfd=6 diagnose debug disable FortiGate-60F # |
Finally, this Wireshark trace shows the client’s view. The FortiGate does not respond to router solicitations (RS, packets nr. 5, 12, 19), hence the real IPv6 process kicks in after it has received the first regular router advertisement (RA, nr. 43): [This trace was made while I had the O-flag still set to enable. Sorry for that.]
That’s it. Happy networking. ;)
Soli Deo Gloria!
Photo by Nick Fewings on Unsplash.
Hello,
your blog articles are a constant source of inspiration. Many thanks for that. However, I am most interested in the network plan in this article. What software did you use to draw the plan? Which shapes did you use? I like the design ;-)
Thank you, Andreas
Haha, thanks for that. ;)
After I had been using MS Visio for the past decade, I saw this tool called https://excalidraw.com/ on a presentation at SharkFest ’24 EU. Since I liked the design as well, I gave it a try.