Configurando o cliente VPN

9

Eu preciso acessar a VPN do meu Ubuntu 12.04.

Eu vejo que há conexões VPN > Configure o VPN no gerenciador de rede, mas ele pede nome de usuário e senha.

Tudo o que tenho são alguns arquivos .crt , .csr , .key , .ovpn , que são adequados para alguns clientes Windows.

Sou muito novato em VPN.

Também encontrei esta postagem no blog . Esse é um caminho a percorrer?

    
por umpirsky 10.05.2012 / 12:44

3 respostas

13

Este é o procedimento que eu segui para fazê-lo funcionar. Há um bug no gerenciador de rede onde ele não importa corretamente - desde 2010 (!)

link

Até que isso seja resolvido, encontrei este site

link

PROCEDIMENTO

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...
    
por tehowe 10.07.2012 / 19:27
13

Instale network-manager-openvpn-gnome do Ubuntu Software Center (geralmente isso fica oculto dos resultados da pesquisa ao pesquisar por openvpn, a menos que você clique em "Mostrar itens técnicos do XX" na parte inferior da janela).

Ou pode usar terminal ( Ctrl + Alt + T ):

sudo aptitude install network-manager-openvpn-gnome

Depois disso, a opção para se conectar a uma VPN openvpn aparecerá sob

gestor de rede - > conexões vpn - > configurar vpn

    
por Simon B 16.05.2012 / 21:18
0

Soluções para alguns problemas que você pode ter:

Sem conexão / desconectando o WiFi

  • Selecione configurar VPN no menu.
  • Selecione a VPN com a qual você está tendo problemas.
  • Clique em editar.
  • Clique na guia IPv4.
  • Clique em Rotas
  • Marque a caixa que diz "Use esta conexão apenas para recursos em sua rede".

fonte

Não é possível conectar-se a hosts na VPN - configuração do firewall

Neste arquivo:

sudo gedit /etc/firestarter/user-pre

adicione essas regras:

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+

Substitua xxx.xxx.xxx.xxx pelo endereço IP do seu gateway de VPN.

fonte

    
por Paweł Prażak 20.05.2012 / 21:07