Ubuntu 12.04からVPNにアクセスする必要があります。
VPN接続があることを確認>ネットワークマネージャーでVPNを構成しますが、ユーザー名とパスワードを要求します。
私が持っているすべては、いくつかある.crt
、.csr
、.key
、.ovpn
いくつかのWindowsクライアントに適しているファイル、。
私はVPNの初心者です。
このブログ投稿も見つけました。それは行く方法ですか?
Ubuntu 12.04からVPNにアクセスする必要があります。
VPN接続があることを確認>ネットワークマネージャーでVPNを構成しますが、ユーザー名とパスワードを要求します。
私が持っているすべては、いくつかある.crt
、.csr
、.key
、.ovpn
いくつかのWindowsクライアントに適しているファイル、。
私はVPNの初心者です。
このブログ投稿も見つけました。それは行く方法ですか?
回答:
これは、動作させるために私が従った手順です。ネットワークマネージャーにovpnインポートを適切に実行しないバグがあります-2010年以降(!)
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/606365
それが修正されるまで、私はこのサイトを見つけました
http://howto.praqma.net/ubuntu/vpn/openvpn-access-server-client-on-ubuntu
手順
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...
network-manager-openvpn-gnome
Ubuntuソフトウェアセンターからインストールします(通常、ウィンドウの下部にある[XXテクニカルアイテムを表示]をクリックしない限り、openvpnを検索すると、検索結果に表示されません)。
または、ターミナル(Ctrl+ Alt+ T)を使用できます。
sudo aptitude install network-manager-openvpn-gnome
この後、openvpn VPNに接続するオプションが
ネットワークマネージャー-> VPN接続-> VPNの構成
.ovpn
ファイル上の機能と一致していることを確認してください(例:ゲートウェイポート、tapまたはtun、tcpまたはudpなど)。これらがすべて完了すると、VPN接続を確立できるようになります。
発生する可能性があるいくつかの問題の解決策:
WiFiの接続/切断なし
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アドレスに置き換えます。