Windows 2000 Laptop laptop.ovpn


#########################################
# Sample client-side OpenVPN config file
# for connecting to multi-client server.
#
# This configuration can be used by multiple
# clients, however each client should have
# its own cert and key files.
#
# tap-style tunnel

port 1194
dev tap

fragment 1024  	/* I get better connections when I make the packet size smaller */
comp-lzo	/* use compression
float		/* I use float so I can test the remote connection from the server network.

# public ip address of office
remote 1.2.3.4 

# TLS params

tls-client
ca "c:\\program files\\openvpn\\config\\ca.crt"
cert "c:\\program files\\openvpn\\config\\your-personal.crt"
key "c:\\program files\\openvpn\\config\\your-personal.key"
dh "c:\\program files\\openvpn\\config\\dh1024.pem"

# This parm is required for connecting
# to a multi-client server.  It tells
# the client to accept options which
# the server pushes to us.

pull

verb 4