Me lo imaginé.
Creé los siguientes archivos:
/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:
...
¿Dónde 2001:470:xxx:xxx::2/64
está su dirección IP de cliente de tunnelbroker.net
Luego reinicie o reinicie su red con systemctl restart systemd-networkd && netplan apply
Actualización / Advertencia Este no funcionará a menos que ya esté usando Ubuntu Bionic castor o específicamente hablando Systemd versión 235. Se necesita la Independent
bandera bajo la [túnel] para esta configuración para trabajar en cada reinicio junto con la versión systemd 235 .
El Independent
indicador no funciona en la versión 234 de systemd y versiones posteriores. Puede verificar su versión de systemd consystemd --version
Independent=
lugar de agregar algo como:[Network] Tunnel=he-ipv6
en un archivo nuevo/etc/systemd/network/10-netplan-eth0.network.d/tunnel.conf
?