複数の IPv6 トンネルを作成できません

複数の IPv6 トンネルを作成できません

2 つのプロバイダー (HE.net と Securebit AG) で 2 つの IPv6 BGP トンネルを作成しようとしています。システムでは複数の作成は許可されませんが、最初に作成した接続は問題なく機能します。各 ISP 接続は、ルーター ボックスにポート転送するように構成されています。

これらのコマンドを使用して最初の接続を確立しましたが、問題なく動作しました

ifconfig sit0 up
ifconfig sit0 inet6 tunnel ::216.YYY.YYY.YYY
ifconfig sit1 up
ifconfig sit1 inet6 add YYYY:YYYY:YYYY:e1::2/64

2番目の接続を確立しようとすると、これらのエラーが発生します

ifconfig sit2 up
sit2: ERROR while getting interface flags: No such device

ifconfig sit2 inet6 tunnel ::80.XXX.XXX.XXX
SIOGIFINDEX: No such device

ifconfig sit3 up
sit3: ERROR while getting interface flags: No such device

ifconfig sit3 inet6 add XXXX:XXXX:XXXX:15b::2/64
SIOGIFINDEX: No such device

私のIPv4ルーティングテーブルは次の通りで、カーネルバージョンは4.9.35

route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.1     0.0.0.0         UG    0      0        0 eth1
default         192.168.8.1     0.0.0.0         UG    203    0        0 eth1
default         192.168.8.1     0.0.0.0         UG    209    0        0 eth2
default         192.168.8.1     0.0.0.0         UG    300    0        0 eth2
80.XXX.XXX.0    192.168.8.1     255.255.240.0   UG    0      0        0 eth2
94.XXX.XXX.0    192.168.8.1     255.255.255.0   UG    0      0        0 eth2
link-local      *               255.255.0.0     U     202    0        0 eth0
link-local      *               255.255.0.0     U     204    0        0 docker0
link-local      *               255.255.0.0     U     206    0        0 vethef89bf3
172.17.0.0      *               255.255.0.0     U     0      0        0 docker0
192.168.1.0     *               255.255.255.0   U     0      0        0 eth1
192.168.8.0     *               255.255.255.0   U     203    0        0 eth1
192.168.8.0     *               255.255.255.0   U     209    0        0 eth2
192.168.100.0   *               255.255.255.0   U     0      0        0 eth0
216.YY.YY.0     192.168.1.1     255.255.240.0   UG    0      0        0 eth1

これについて何か手がかりはありますか?ありがとう

答え1

カーネルバージョンは十分に新しいので、iproute22.4 時代のツールの代わりに。

sit0 を無視し、接続ごとに新しいインターフェースを明示的に作成します。

ip link add henet type sit local 192.168.1.x remote 216.66.84.y ttl 64
ip addr add 2001:470:yyyy::2/64 dev henet
ip link set henet up

ip link add securebit type sit local 192.168.1.x remote 80.y.y.y ttl 64
ip addr add XXXX:XXXX:XXXX:15b::2/64 dev securebit
ip link set securebit up

あるいは、 のバージョンがip link addまだ sit トンネルをサポートしていない場合は、次の手順を実行します。

ip tunnel add henet mode sit local 192.168.1.x remote 216.66.84.y ttl 64
ip addr add...

このモデルでは、sit0 が魔法のプロパティを持つ古いシステムとは異なり、各トンネルが 1 つのインターフェースのみで構成されていることに注意してください。

関連情報