[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:57854] Re: jessieでトンネルIFが使えない



お世話になります、仲村です。

> トンネルでネットワークを作るコマンドを、コマンドラインから
> 直接実行されてみてはいかがでしょうか。

ip tunnel show で何も出ない状態で、
ip tunnel add tunl0 mode ipip を行うと、
add tunnel "tunl0" failed: File exists と表示されます。

これでも一応 tunl0 はできるので、ip addr add と ip link set tunl0 up で
使えるようにはなるみたいですが、これら一連をinterfacesに記述しても
起動時にアクティブになってくれません。

引き続きアドバイスありましたらお願いします。

--- /etc/network/interfaces ---

iface tunl0 inet static
  pre-up ip tunnel add tunl0 mode ipip
  up ip addr add 172.16.0.1/32 dev tunl0
  up ip link set tunl0 up
  post-down ip tunnel del tunl0 mode ipip
auto tunl0