Hi,

Da Ich auf meinen clienten nicht so viele server installieren möchte und die vpn durchleitung eigentlich nur auf den Browser beschrenken will dachte Ich mir Ich würde mal einfach auf meinem root Server einen VPN clienten aufsetzen und dazu einen Socks server um nach außen proxys zur verfügung zu stellen und damit den zugriff auf das VPN netzwerk zu ermöglichen.

Gehen tut das ganze dann doch nicht so einfach. Ich glaube es liegt daran das Ich die überleitung Proxy -> VPN nicht gänzlich verstehe.

Kann mir da jemand bitte weiterhelfen?

Hier mal der Stand wo Ich bin:

openvpn config:
Code:
# host/port of vpn server
remote gw1.iad1.slickvpn.com 8080 udp

# file containing username and password
#auth-user-pass openvpn.userpass
# ... or prompt for authentication
auth-user-pass

# equivalent to pull, tls-client
client

# redirect all outgoing traffic to the vpn gateway
#redirect-gateway
# use a socks proxy instead
#socks-proxy 127.0.0.1 8888

# verify the server certificate for authenticity
remote-cert-tls server

cipher AES-256-CBC

dev tun
keepalive 10 120
nobind

persist-key
persist-tun

verb 3

pull dhcp-options

# certificate revocation list for invalid server certs
crl-verify certs/crl.pem

# CA certificate used for server cert validation
#ca certs/ca.crt

<ca>
#Fürs forum gekürzte SlickVPN zertifikat
</ca>
danted config:

Code:
logoutput: syslog 

internal: eth0 port = 1080

external: tun1 

method: username none #rfc931

user.notprivileged: nobody

user.libwrap: nobody

client pass {
	from: 0.0.0.0/0  port 1-65535 to: 0.0.0.0/0
}

pass {
	from: 0.0.0.0/0 to: 0.0.0.0/0
	protocol: tcp udp
}