Eu descobri.
Eu criei os seguintes arquivos:
/etc/systemd/network/he-ipv6.network
[Match]
[Network]
Tunnel=he-ipv6
/etc/systemd/network/he-ipv6-tunnel.netdev
[Match]
[NetDev]
Name=he-ipv6
Kind=sit
[Tunnel]
Independent=true
Local=192.168.0.x #Private IP if behind NAT or Public IP without NAT
Remote=184.105.250.46 #Tunnel broker's IPv4 address
TTL=255
/etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
he-ipv6:
dhcp4: no
dhcp6: no
addresses: ['2001:470:xxx:xxx::2/64']
gateway6: 2001:470:xxx:xxx::1
enp0s3:
...
Onde 2001:470:xxx:xxx::2/64
está o seu endereço IP do cliente em tunnelbroker.net
Em seguida, reinicie ou reinicie sua rede com systemctl restart systemd-networkd && netplan apply
Atualização / Aviso Isso não funcionará, a menos que você já esteja usando o Ubuntu Bionic Beaver ou falando especificamente o Systemd versão 235. Você precisa da Independent
bandeira em [Tunnel] para que esta configuração funcione em todas as reinicializações junto com o systemd versão 235 .
O Independent
sinalizador não funciona na versão systemd 234 e abaixo. Você pode verificar sua versão do systemd comsystemd --version
Independent=
vez de adicionar algo como:[Network] Tunnel=he-ipv6
Em um novo arquivo/etc/systemd/network/10-netplan-eth0.network.d/tunnel.conf
?