web-dev-qa-db-ja.com

VPNクライアントの設定

Ubuntu 12.04からVPNにアクセスする必要があります。

ネットワークマネージャーに[VPN接続]> [VPNの構成]が表示されますが、ユーザー名とパスワードの入力を求められます。

私が持っているのは、いくつかの.crt.csr.key.ovpnファイルだけです。これらはWindowsクライアントに適しています。

私は本当にVPNの初心者です。

このブログ投稿 も見つけました。それは行く方法ですか?

9
umpirsky

これが機能するために私が従った手順です。ネットワークマネージャーにバグがあり、ovpnインポートが正しく行われない-2010年以降(!)

https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/606365

それが修正されるまで、私はこのサイトを見つけました

http://howto.praqma.net/ubuntu/vpn/openvpn-access-server-client-on-ubunt

手順

Create a new folder in your home dir - I called mine vpn.config
Copy your downloaded client.ovpn file into the new folder

Open client.opvn in an editor

Open a new file
Cut the lines between <ca> tags in client.ovpn
Paste into new file, save this file as ca.crt
Remove both <ca> tags from client.ovpn

Open a new file
Cut the lines between <cert> tags in client.ovpn
Paste into new file, save this file as client.crt
Remove both <cert> tags from client.ovpn

Open a new file
Cut the lines between <key> tags in client.ovpn
Paste into new file, save this file as client.key
Remove both <key> tags from client.ovpn

Open a new file - this is the last one :-)
Cut the lines between <tls-auth> tags in client.ovpn
Paste into new file, save this file as ta.key
Remove both <tls-auth> tags from client.ovpn

And remove this line:
key-direction 1


Now position the cursor in client.ovpn, right above the line # -----BEGIN RSA SIGNATURE-----

Insert the following lines

ca ca.crt
cert client.crt
key client.key
tls-auth ta.key 1

Save and close all the files.

Goto Network Manager -> Edit Connections ->VPN
click Import, browse to the modified client.ovpn in the folder you recently created - and where your certificates are, and import that file
Enter vpn username and password if prompted
On the VPN page, select Advanced
On the General Tab, uncheck the first option, "Use custom gateway"

Save

Use...
13
tehowe

Ubuntu Software Centerからnetwork-manager-openvpn-gnomeをインストールします(通常、ウィンドウの下部にある[Show XX technical items]をクリックしない限り、これはopenvpnを検索するときの検索結果に表示されません)。

または、端末を使用できます(Ctrl+Alt+T):

Sudo aptitude install network-manager-openvpn-gnome

この後、openvpn VPNに接続するオプションが表示されます

ネットワークマネージャー-> VPN接続-> VPNの構成

13
Simon B

あなたが持っているかもしれないいくつかの問題の解決策:

接続なし/ WiFiの切断

  • メニューから[VPNの構成]を選択します。
  • 問題が発生しているVPNを選択します。
  • 編集をクリックします。
  • [IPv4]タブをクリックします。
  • ルートをクリック
  • 「ネットワーク上のリソースにのみこの接続を使用する」というボックスをチェックします。

ソース

VPNのホストに接続できません-ファイアウォール設定

このファイル内:

Sudo gedit /etc/firestarter/user-pre

それらのルールを追加します。

iptables -A INPUT -j ACCEPT -s xxx.xxx.xxx.xxx -p esp
iptables -A INPUT -j ACCEPT -s xxx.xxx.xxx.xxx -p udp -m multiport -sports isakmp,10000
iptables -A INPUT -j ACCEPT -i tun+
iptables -A OUTPUT -j ACCEPT -d xxx.xxx.xxx.xxx -p esp
iptables -A OUTPUT -j ACCEPT -d xxx.xxx.xxx.xxx -p udp -m multiport -dports isakmp,10000
iptables -A OUTPUT -j ACCEPT -o tun+

Xxx.xxx.xxx.xxxをVPNゲートウェイのIPアドレスに置き換えます。

ソース

0
Paweł Prażak