10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu 18.04でのVPNクライアント設定

Last updated at Posted at 2019-06-21

概要

Ubuntu16.04使用時、「network-manager-l2tp-gnome」を使用して外部のVPNへ接続していた。
だが、Ubuntu18.04にアップデートした所、VPN接続が出来なくなっていた、、、
当時、同様の症状で巷はもちきり(kernel 4.15.xxのバグ?)だった為、バージョンアップにより解消されるだろうとしばらく放置を決め込んでいた。

回避策として、 仮想マシン上のUbuntu16.04からVPN接続&プロキシサーバを立て、ホストマシンのUbuntu18.04からUbuntu16.04を経由してVPNへ接続 していた。。。

あれから約1年、、、いい加減解消されてるはず!

カーネルバージョンアップにより解消を試みた結果

期待を込めて、

$ sudo apt install linux-image-4.18.0-22-generic
$ sudo reboot

、、、キーボードが効かない!!!
自宅のPCはMacBook Pro、よくわからないので諦める。

NetworkManager-l2tpで対応している模様

[NetworkManager-l2tp][1]で対応されているらしいので入れてみる。
[1]:https://github.com/nm-l2tp/NetworkManager-l2tp/blob/master/README.md

必要パッケージインストール
$ sudo apt install git autoconf automake libtool intltool libglib2.0-dev \
  ppp-dev libssl-dev libnss3-dev libgtk-3-dev libnma-dev libsecret-1-dev \
  xl2tpd strongswan
clone
$ git clone https://github.com/nm-l2tp/NetworkManager-l2tp.git
$ cd NetworkManager-l2tp
ビルド&インストール
$ ./autogen.sh
$ ./configure --prefix=/usr \
  --sysconfdir=/etc --localstatedir=/var \
  --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/x86_64-linux-gnu \
  --with-pppd-plugin-dir=/usr/lib/pppd/2.4.7 --enable-absolute-paths
$ make
$ sudo make install

何やらボタンが増えている!

Screenshot from 2019-06-21 13-27-24.png

「Legacy Proposals」ボタンなるものが増えている。
※1年前はPhase Algorithmesを色々な組み合わせで試してもだめでした、、、

ボタンを押して接続して見ると、、、
接続成功!

20.04はスムーズに接続できる事を切に願います。

10
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?