For some reason dhcpcd on my Linux desktop appears to be reconfiguring every 2-10 minutes without stop in response to Router Advertisements coming from my router (a TL-WR841ND v8 flashed with OpenWRT 17.01.7). This does not seem to be a problem between the router and my internet provider on the wan/wan6 side. From my desktop's /var/log/messages:
...
Feb 10 01:07:16 kestralis dhcpcd[1824]: eth0: Router Advertisement from fe80::6666:b3ff:fe9d:172a
Feb 10 01:09:01 kestralis dhcpcd[1824]: eth0: RECONFIGURE6 from fe80::6666:b3ff:fe9d:172a
Feb 10 01:09:01 kestralis dhcpcd[1824]: eth0: REPLY6 received from fe80::6666:b3ff:fe9d:172a
Feb 10 01:09:01 kestralis dhcpcd[1824]: eth0: adding address 2600:6c67:467f:e831::100/128
Feb 10 01:09:01 kestralis dhcpcd[1824]: eth0: renew in 216000, rebind in 345600, expire in 4294967295 seconds
Feb 10 01:09:02 kestralis dhcpcd[1824]: eth0: Router Advertisement from fe80::6666:b3ff:fe9d:172a
Feb 10 01:11:59 kestralis dhcpcd[1824]: eth0: RECONFIGURE6 from fe80::6666:b3ff:fe9d:172a
Feb 10 01:11:59 kestralis dhcpcd[1824]: eth0: REPLY6 received from fe80::6666:b3ff:fe9d:172a
Feb 10 01:11:59 kestralis dhcpcd[1824]: eth0: adding address 2600:6c67:467f:e831::100/128
Feb 10 01:11:59 kestralis dhcpcd[1824]: eth0: renew in 216000, rebind in 345600, expire in 4294967295 seconds
Feb 10 01:12:00 kestralis dhcpcd[1824]: eth0: Router Advertisement from fe80::6666:b3ff:fe9d:172a
...
My router is configured to be serve both RAs and DHCPv6 in "server" mode, with leases set to 12 hours by default. The Linux desktop also has a static lease setup. For reference, here is my router's /etc/config/dhcp:
config dnsmasq
option domainneeded '1'
option filterwin2k '0'
option localise_queries '1'
option rebind_protection '1'
option rebind_localhost '0'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option nonegcache '1'
option authoritative '1'
option nonwildcard '1'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.auto'
option localservice '1'
list server '*<redacted>*'
list server '*<redacted>*'
list server '*<redacted>*'
list server '*<redacted>*'
list server '*<redacted>*'
list server '*<redacted>*'
config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv6 'server'
option ra 'server'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
config host
option name '*<redacted>*'
option mac '*<redacted>*'
option duid '*<redacted>*'
option ip '192.168.10.113'
option hostid '100'
option dns '1'
option leasetime '120h'
config domain
My desktop's network connection at least seems quite solid, but I'm assuming these messages hint at a misstep in my configuration. What can I do (or try) to correct this? Any suggestions appreciated.