私はそれを考え出した。
次のファイルを作成しました。
/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:
...
2001:470:xxx:xxx::2/64
tunnelbroker.netからのクライアントIPアドレスはどこにありますか
次に、ネットワークを再起動または再起動します systemctl restart systemd-networkd && netplan apply
更新/警告これは、Ubuntu Bionic Beaverを使用しているか、特にSystemdバージョン235を使用している場合を除き、機能しません。この構成をsystemdバージョン235とともに再起動するたびに機能させるには、[トンネル]の下のフラグが必要Independent
です。
このIndependent
フラグは、systemdバージョン234以前では機能しません。systemdのバージョンを確認するにはsystemd --version
Independent=
次のようなものを追加する代わりに使用する特定の理由:[Network] Tunnel=he-ipv6
新しいファイルで/etc/systemd/network/10-netplan-eth0.network.d/tunnel.conf
?