Hi All.
My FreeBSD box using dual stack IPv6 with Privacy Extensions (net.inet6.ip6.use_tempaddr: 1) @ WAN NIC example below
And filter out 1ST_NEW IPv6 address and feed into DNS server by dns/ddclient with scan WAN NIC per 5 minutes periodically and filter condition as below
A day, my FreeBSD box can not access from internet by IPv6.
And checked WAN NIC as below.
Unexpected dual temporary addresses found.
No idea how to fix, fixed by reboot.
Root cause is dns/ddclient filter out 1ST_NEW of NG address and access failed from internet ? .
Question:
Neko
My FreeBSD box using dual stack IPv6 with Privacy Extensions (net.inet6.ip6.use_tempaddr: 1) @ WAN NIC example below
Code:
inet6 OLD prefixlen 64 deprecated autoconf temporary
inet6 1ST_NEW prefixlen 64 autoconf temporary
/usr/bin/sed -e '/temporary/\!d ;/deprecated/d'
A day, my FreeBSD box can not access from internet by IPv6.
And checked WAN NIC as below.
Code:
inet6 OLD prefixlen 64 deprecated autoconf temporary
inet6 1ST_NEW prefixlen 64 autoconf temporary <- Ping NG from internet
inet6 2ND_NEW prefixlen 64 autoconf temporary <- Ping OK from internet
No idea how to fix, fixed by reboot.
Root cause is dns/ddclient filter out 1ST_NEW of NG address and access failed from internet ? .
Question:
- Only one temporary addresses per NIC I think.
But dual exist in my case, something wrong? - Temporary addresses generate in kernel known.
Possible trigger / add hook to notify and pass valid address to user space application/script like dns/ddclient when valid address available?
Neko