JOCKYW2001
Neuer User
- Mitglied seit
- 10 Feb 2005
- Beiträge
- 188
- Punkte für Reaktionen
- 0
- Punkte
- 16
Hi guys,
Nice thread, good info. It helped me to get openvpn to work on my 7170.
My server.ovpn looks like:
client.ovpn
I would like to connect my HTC S710 smartphone (Windows Mobile 6) which runs an openvpn alpha client and tunnel all internet traffic. The smartphone connects to Internet via GPRS/Edge.
My question is how should I change the configs such that all internet traffic between smartphone and internet is tunneled via the OpenVPN gateway?
Thx in advance for your help
Nice thread, good info. It helped me to get openvpn to work on my 7170.
My server.ovpn looks like:
Code:
#
dev tun0
dev-node /var/tmp/tun
ifconfig 192.168.200.2 192.168.200.1
tun-mtu 1500
float
mssfix
#Pfad zum Key File
secret /var/tmp/secret.key
#Protokoll auf TCP und Port 1194
proto tcp-server
port 1194
#Protokollierung auf 4
verb 4
#Routen setzen, bei route Subnetz des Clients eintragen
route 192.168.2.0 255.255.255.0
#Verbindung erhalten
ping 15
ping-restart 120
client.ovpn
Code:
ifconfig 192.168.200.1 192.168.200.2
dev tun
dev-node MyTAP
tun-mtu 1500
mssfix
persist-tun
persist-key
#Remote Adresse des Servers angeben
#muss entsprechend geaendert werden
remote xxxx.dyndns.com
#Pfad zum Key File
secret secret.key
#Protokoll auf TCP und Port 1194
#Änderungen müssen auf Client- und Server-Seite gleich sein
proto tcp-client
port 1194
#Da die Verbindung alle 24 Stunden getrennt wird
#soll regelmäßig kontrolliert werden ob die Verbindung noch steht
ping 15
ping-restart 120
#Der DynDNS-Name soll alle 60 Sekunden neu aufgelöst werden
#da OpenVPN sonst ständig versucht über die alte IP
#zu verbinden
resolv-retry 60
I would like to connect my HTC S710 smartphone (Windows Mobile 6) which runs an openvpn alpha client and tunnel all internet traffic. The smartphone connects to Internet via GPRS/Edge.
My question is how should I change the configs such that all internet traffic between smartphone and internet is tunneled via the OpenVPN gateway?
Thx in advance for your help
Zuletzt bearbeitet: