gnome 3.18 e .ovpn

0

Eu tenho um .ovpn que eu fiz de aqui

Eu testei a porta está conectando w / netstat:

$ nc -v -u -z -w 3 <ip> 443      
Connection to <ip> 443 port [udp/https] succeeded!

Parece abaixo. Eu baixei e tentei fazê-lo funcionar com o Gnome 3.18. Até agora, não muita sorte.

No cliente:

sudo apt-get install network-manager-openvpn-gnome

Em seguida, configurações - > rede- > + (inferior esquerdo) - > VPN - > Importar do arquivo ...

Ele aparece na lista, mas, se eu habilitá-lo, os navegadores não funcionam.

O que estou perdendo? Obrigado antecipadamente!

client
dev tun
proto udp
sndbuf 0
rcvbuf 0
remote <deleted> 443
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
cipher AES-256-CBC
comp-lzo
setenv opt block-outside-dns
key-direction 1
verb 3
<ca>
-----BEGIN CERTIFICATE-----
<deleted>
-----END CERTIFICATE-----
</ca>
<cert>
Certificate:
    Data:
        Version: 3 (0x2)
        Serial Number: 2 (0x2)
    Signature Algorithm: sha256WithRSAEncryption
        Issuer: CN=ChangeMe
        Validity
            Not Before: Mar 24 17:22:16 2017 GMT
            Not After : Mar 22 17:22:16 2027 GMT
        Subject: CN=mclaptop
        Subject Public Key Info:
            Public Key Algorithm: rsaEncryption
                Public-Key: (2048 bit)
                Modulus:
                    <deleted>
                Exponent: 65537 (0x10001)
        X509v3 extensions:
            X509v3 Basic Constraints: 
                CA:FALSE
            X509v3 Subject Key Identifier: 
                <deleted>
            X509v3 Authority Key Identifier: 
                <deleted>
                DirName:/CN=ChangeMe
                serial:A4:D8:96:4B:25:FD:DB:71

            X509v3 Extended Key Usage: 
                TLS Web Client Authentication
            X509v3 Key Usage: 
                Digital Signature
    Signature Algorithm: sha256WithRSAEncryption
         <deleted>
-----BEGIN CERTIFICATE-----
<deleted>
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN PRIVATE KEY-----
<deleted>
-----END PRIVATE KEY-----
</key>
<tls-auth>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
<deleted>
-----END OpenVPN Static key V1-----
</tls-auth>
    
por Michael Cole 24.03.2017 / 19:30

1 resposta

0

O problema é que eu estava tentando usar o UDP na porta 443 e não funcionou. Comutado para a porta 53 (DNS) e funciona bem.

    
por Michael Cole 27.03.2017 / 02:24