OpenVPN Multihost Config

Here is my working access to my intranet via OpenVPN in MultiHost Mode. First the server config:

and now the client config:

##############################################
# Sample client-side OpenVPN 2.0 config file #
##############################################
# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client
# Use the same setting as you are using on
# the server.
dev tun
# Are we connecting to a TCP or
# UDP server? Use the same setting as
# on the server.
proto udp
# The hostname/IP and port of the server.
remote olkn.myvnc.com 1194
# Keep trying indefinitely to resolve the
# host name of the OpenVPN server. Very useful
# on machines which are not permanently connected
# to the internet such as laptops.
resolv-retry infinite
# Most clients don't need to bind to
# a specific local port number.
nobind
# Downgrade privileges after initialization (non-Windows only)
user nobody
group nogroup
# Try to preserve some state across restarts.
persist-key
persist-tun
# If you are connecting through an
# HTTP proxy to reach the actual OpenVPN
# server, put the proxy server/IP and
# port number here. See the man page
# if your proxy server requires
# authentication.
;http-proxy-retry # retry on connection failures
;http-proxy [proxy server] [proxy port #]
# SSL/TLS parms.
ca /etc/openvpn/ca.crt
cert /etc/openvpn/thinkpad.crt
key /etc/openvpn/thinkpad.key
# Verify server certificate by checking
# that the certicate has the nsCertType
# field set to "server". This is an
# important precaution to protect against
# a potential attack discussed here:
# http://openvpn.net/howto.html#mitm
ns-cert-type server
# If a tls-auth key is used on the server
# then every client must also have the key.
;tls-auth ta.key 1
# Enable compression on the VPN link.
comp-lzo
# Set log file verbosity.
verb 3

Fritzbox – OpenVPN

My Fritzbox 7270 was recently configured to open a VPN tunnel to my internal network. The fritzbox config is shown below in the picture:

My Desire is configured like this:

remote olkn.homelinux.net
proto udp
dev tap
tls-client
ns-cert-type server
ca /sdcard/openvpn/ca.crt
cert /sdcard/openvpn/client.crt
key /sdcard/openvpn/client.key
tls-auth /sdcard/openvpn/static.key 1
tun-mtu 1500
mssfix
nobind
pull
cipher AES-128-CBC
verb 3