View Single Post
  #3   (View Single Post)  
Old 4th May 2023
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

It seems that /etc/soii.key is built by rc(8) when making keys (first boot):
Code:
        if [[ ! -f /etc/soii.key ]]; then
                openssl rand -hex 16 > /etc/soii.key &&
                    chmod 600 /etc/soii.key && sysctl -q \
                    "net.inet6.ip6.soiikey=$(</etc/soii.key)"
        fi
It can be recreated easily.
Reply With Quote