2009-11-05 17:46:47 UTC
This is my server config:
# OpenVPN server configuration QNAP NAS
basic settings
port 1194
proto udp
dev tun
#
detect mtu if the connection is slow.
; mtu-test
#
define mtu, if necessary
; tun-mtu xyz
#
define the ip-addresses of the underlying tunnel
server 10.8.0.0 255.255.255.0
#
Route
push "route 192.168.4.0 255.255.255.0" # <--- Enter the ip-address of your home network here!
#
certificates & keys
dh /opt/etc/openvpn/keys/dh1024.pem
ca /opt/etc/openvpn/keys/ca.crt
cert /opt/etc/openvpn/keys/server.crt
key /opt/etc/openvpn/keys/server.key
#
data compression
comp-lzo
#
allow, that several clients with the same common name log on
; duplicate-cn
#
different clients can "see" each other through the tunnel.
; client-to-client
#
Keepalive
keepalive 15 120
#
verbosity of status messages in the console. Activate for debugging (1-9 possible)
; verb 5
#
Log files
; status /share/HDADATA/optware/opt/etc/openvpn/log/status.log
; log-append /share/HDADATA/optware/opt/etc/openvpn/log/openvpn.log
Run as daemon (activate, after everything is set up properly)
; daemon
#
Management Interface. Access with "telnet localhost 7505"
management localhost 7505
How do i create a route to my home router?
Sorry i'm new to openvpn..
Thanks!