Como encapsular usando o OpenVPN no Windows

0

Eu estabeleci com sucesso uma conexão SSH no Windows usando a GUI do OpenVPN. Para alcançar os servidores ABC, preciso usar um túnel. Como posso configurar um tunelamento HTTP de acordo com este manual:

The ABC servers are not directly routed through the VPN. However, once a VPN connection to F-City has been established via OpenVPN, there are two ways to access J and the W. The examples below use ServerP (x.x.x.x) as SSH hop, which can access the target servers.

1. caminho

SSH Tunnel

The SSH connection from OpenVPN Client to ServerP with HTTP tunneling:

ssh -L 8000:y.y.y.y:80 ServerP

Onde devo definir este comando ssh no OpenVPN para usar o tunelamento HTTP?

2. caminho

SOCKS Proxy

SSH connection from OpenVPN Client to ServerP with activation of a SOCKS proxy:

ssh -D 8000 ServerP

Onde devo definir esse comando ssh no OpenVPN para usar um proxy SOCKS?

    
por Shlomo 13.10.2016 / 16:29

1 resposta

2

Você não 'normalmente' define o comando para o openvpn para usar o ssh; o túnel SSH é realmente algo que faz uso da conexão OpenVPN.

Então, instale o putty e nas configurações você pode configurar o túnel. A partir daqui, o resto de suas instruções deve começar a fazer mais sentido para você! - tutorial de tunelamento da Putty

    
por 13.10.2016 / 16:36