How to avoid ipv6 leak

Need help configuring your VPN? Just post here and you'll get that help.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please use the [oconf] BB tag for openvpn Configurations. See viewtopic.php?f=30&t=21589 for an example.
Post Reply
keymouse
OpenVpn Newbie
Posts: 2
Joined: Fri Nov 24, 2017 11:49 pm

How to avoid ipv6 leak

Post by keymouse » Sat Nov 25, 2017 12:05 am

Hi, I just set up an openvpn server and it's working fine over ipv4, but checking my ipv6 ip on various websites still shows my unmasked ip address.

I could just disable ipv6 in windows' settings, but if possible, I'd rather not do that for every client.

If I could get any pointers on what to change to route ALL traffic through openVPN, I'd really appreciate it. Thank you.

1.
SERVER CONFIG:
server

#################################################
# Sample OpenVPN 2.0 config file for #
# multi-client server. #
# #
# This file is for the server side #
# of a many-clients <-> one-server #
# OpenVPN configuration. #
# #
# OpenVPN also supports #
# single-machine <-> single-machine #
# configurations (See the Examples page #
# on the web site for more info). #
# #
# This config should work on Windows #
# or Linux/BSD systems. Remember on #
# Windows to quote pathnames and use #
# double backslashes, e.g.: #
# "C:\\Program Files\\OpenVPN\\config\\foo.key" #
# #
# Comments are preceded with '#' or ';' #
#################################################

# Which local IP address should OpenVPN
# listen on? (optional)
;local a.b.c.d

# Which TCP/UDP port should OpenVPN listen on?
# If you want to run multiple OpenVPN instances
# on the same machine, use a different port
# number for each one. You will need to
# open up this port on your firewall.
port 1194
# TCP or UDP server?
;proto tcp
proto udp

# "dev tun" will create a routed IP tunnel,
# "dev tap" will create an ethernet tunnel.
# Use "dev tap0" if you are ethernet bridging
# and have precreated a tap0 virtual interface
# and bridged it with your ethernet interface.
# If you want to control access policies
# over the VPN, you must create firewall
# rules for the the TUN/TAP interface.
# On non-Windows systems, you can give
# an explicit unit number, such as tun0.
# On Windows, use "dev-node" for this.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun

# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel if you
# have more than one. On XP SP2 or higher,
# you may need to selectively disable the
# Windows firewall for the TAP adapter.
# Non-Windows systems usually don't need this.
;dev-node MyTap

# SSL/TLS root certificate (ca), certificate
# (cert), and private key (key). Each client
# and the server must have their own cert and
# key file. The server and all clients will
# use the same ca file.
#
# See the "easy-rsa" directory for a series
# of scripts for generating RSA certificates
# and private keys. Remember to use
# a unique Common Name for the server
# and each of the client certificates.
#
# Any X509 key management system can be used.
# OpenVPN can also use a PKCS #12 formatted key file
# (see "pkcs12" directive in man page).
ca ca.crt
cert vpnserver.crt
key vpnserver.key # This file should be kept secret

# Diffie hellman parameters.
# Generate your own with:
# openssl dhparam -out dh2048.pem 2048
dh dh2048.pem

# Network topology
# Should be subnet (addressing via IP)
# unless Windows clients v2.0.9 and lower have to
# be supported (then net30, i.e. a /30 per client)
# Defaults to net30 (not recommended)
;topology subnet

# Configure server mode and supply a VPN subnet
# for OpenVPN to draw client addresses from.
# The server will take 10.8.0.1 for itself,
# the rest will be made available to clients.
# Each client will be able to reach the server
# on 10.8.0.1. Comment this line out if you are
# ethernet bridging. See the man page for more info.
server 10.8.0.0 255.255.255.0

# Maintain a record of client <-> virtual IP address
# associations in this file. If OpenVPN goes down or
# is restarted, reconnecting clients can be assigned
# the same virtual IP address from the pool that was
# previously assigned.
ifconfig-pool-persist ipp.txt

# Configure server mode for ethernet bridging.
# You must first use your OS's bridging capability
# to bridge the TAP interface with the ethernet
# NIC interface. Then you must manually set the
# IP/netmask on the bridge interface, here we
# assume 10.8.0.4/255.255.255.0. Finally we
# must set aside an IP range in this subnet
# (start=10.8.0.50 end=10.8.0.100) to allocate
# to connecting clients. Leave this line commented
# out unless you are ethernet bridging.
;server-bridge 10.8.0.4 255.255.255.0 10.8.0.50 10.8$

# Configure server mode for ethernet bridging
# using a DHCP-proxy, where clients talk
# to the OpenVPN server-side DHCP server
# to receive their IP address allocation
# and DNS server addresses. You must first use
# your OS's bridging capability to bridge the TAP
# interface with the ethernet NIC interface.
# Note: this mode only works on clients (such as
# Windows), where the client-side TAP adapter is
# bound to a DHCP client.
;server-bridge

# Push routes to the client to allow it
# to reach other private subnets behind
# the server. Remember that these
# private subnets will also need
# to know to route the OpenVPN client
# address pool (10.8.0.0/255.255.255.0)
# back to the OpenVPN server.
;push "route 192.168.10.0 255.255.255.0"
;push "route 192.168.20.0 255.255.255.0"

# To assign specific IP addresses to specific
# clients or if a connecting client has a private
# subnet behind it that should also have VPN access,
# use the subdirectory "ccd" for client-specific
# configuration files (see man page for more info).

# EXAMPLE: Suppose the client
# having the certificate common name "Thelonious"
# also has a small subnet behind his connecting
# machine, such as 192.168.40.128/255.255.255.248.
# First, uncomment out these lines:
;client-config-dir ccd
;route 192.168.40.128 255.255.255.248
# Then create a file ccd/Thelonious with this line:
# iroute 192.168.40.128 255.255.255.248
# This will allow Thelonious' private subnet to
# access the VPN. This example will only work
# if you are routing, not bridging, i.e. you are
# using "dev tun" and "server" directives.

# EXAMPLE: Suppose you want to give
# Thelonious a fixed VPN IP address of 10.9.0.1.
# First uncomment out these lines:
;client-config-dir ccd
;route 10.9.0.0 255.255.255.252
# Then add this line to ccd/Thelonious:
# ifconfig-push 10.9.0.1 10.9.0.2

# Suppose that you want to enable different
# firewall access policies for different groups
# of clients. There are two methods:
# (1) Run multiple OpenVPN daemons, one for each
# group, and firewall the TUN/TAP interface
# for each group/daemon appropriately.
# (2) (Advanced) Create a script to dynamically
# modify the firewall in response to access
# from different clients. See man
# page for more info on learn-address script.
;learn-address ./script

# If enabled, this directive will configure
# all clients to redirect their default
# network gateway through the VPN, causing
# all IP traffic such as web browsing and
# and DNS lookups to go through the VPN
# (The OpenVPN server machine may need to NAT
# or bridge the TUN/TAP interface to the internet
# in order for this to work properly).
push "redirect-gateway def1 bypass-dhcp"

# Certain Windows-specific network settings
# can be pushed to clients, such as DNS
# or WINS server addresses. CAVEAT:
# http://openvpn.net/faq.html#dhcpcaveats
# The addresses below refer to the public
# DNS servers provided by opendns.com.
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"

# Uncomment this directive to allow different
# clients to be able to "see" each other.
# By default, clients will only see the server.
# To force clients to only see the server, you
# will also need to appropriately firewall the
# server's TUN/TAP interface.
;client-to-client

# Uncomment this directive if multiple clients
# might connect with the same certificate/key
# files or common names. This is recommended
# only for testing purposes. For production use,
# each client should have its own certificate/key
# pair.
#
# IF YOU HAVE NOT GENERATED INDIVIDUAL
# CERTIFICATE/KEY PAIRS FOR EACH CLIENT,
# EACH HAVING ITS OWN UNIQUE "COMMON NAME",
# UNCOMMENT THIS LINE OUT.
;duplicate-cn

# The keepalive directive causes ping-like
# messages to be sent back and forth over
# the link so that each side knows when
# the other side has gone down.
# Ping every 10 seconds, assume that remote
# peer is down if no ping received during
# a 120 second time period.
keepalive 10 120

# For extra security beyond that provided
# by SSL/TLS, create an "HMAC firewall"
# to help block DoS attacks and UDP port flooding.
#
# Generate with:
# openvpn --genkey --secret ta.key
#
# The server and each client must have
# a copy of this key.
# The second parameter should be '0'
# on the server and '1' on the clients.
tls-auth ta.key 0
key-direction 0 # This file is secret

# Select a cryptographic cipher.
# This config item must be copied to
# the client config file as well.
;cipher BF-CBC # Blowfish (default)
cipher AES-256-CBC # AES
;cipher DES-EDE3-CBC # Triple-DES
auth SHA512
# Enable compression on the VPN link.
# If you enable it here, you must also
# enable it in the client config file.
comp-lzo

# The maximum number of concurrently connected
# clients we want to allow.
;max-clients 100

# It's a good idea to reduce the OpenVPN
# daemon's privileges after initialization.
#
# You can uncomment this out on
# non-Windows systems.
user openvpn
group nogroup

# The persist options will try to avoid
# accessing certain resources on restart
# that may no longer be accessible because
# of the privilege downgrade.
persist-key
persist-tun

# Output a short status file showing
# current connections, truncated
# and rewritten every minute.
status openvpn-status.log
# By default, log messages will go to the syslog (or
# on Windows, if running as a service, they will go $
# the "\Program Files\OpenVPN\log" directory).
# Use log or log-append to override this default.
# "log" will truncate the log file on OpenVPN startu$
# while "log-append" will append to it. Use one
# or the other (but not both).
;log openvpn.log
;log-append openvpn.log

# Set the appropriate level of log
# file verbosity.
#
# 0 is silent, except for fatal errors
# 4 is reasonable for general usage
# 5 and 6 can help to debug connection problems
# 9 is extremely verbose
verb 3

# Silence repeating messages. At most 20
# sequential messages of the same message
# category will be output to the log.
;mute 20




2.
CLIENT CONFIG:
client

##############################################
# Sample client-side OpenVPN 2.0 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. #
# #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
##############################################

# 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.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun

# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel
# if you have more than one. On XP SP2,
# you may need to disable the firewall
# for the TAP adapter.
;dev-node MyTap

# Are we connecting to a TCP or
# UDP server? Use the same setting as
# on the server.
;proto tcp
proto udp

# The hostname/IP and port of the server.
# You can have multiple remote entries
# to load balance between the servers.
remote myserverIP 1194
;remote my-server-2 1194

# Choose a random host from the remote
# list for load-balancing. Otherwise
# try hosts in the order specified.
;remote-random

# 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 #]

# Wireless networks often produce a lot
# of duplicate packets. Set this flag
# to silence duplicate packet warnings.
;mute-replay-warnings

# SSL/TLS parms.
# See the server config file for more
# description. It's best to use
# a separate .crt/.key file pair
# for each client. A single ca
# file can be used for all clients.
;ca ca.crt
;cert client.crt
;key client.key

# Verify server certificate by checking that the
# certicate has the correct key usage set.
# This is an important precaution to protect against
# a potential attack discussed here:
# http://openvpn.net/howto.html#mitm
#
# To use this feature, you will need to generate
# your server certificates with the keyUsage set to
# digitalSignature, keyEncipherment
# and the extendedKeyUsage to
# serverAuth
# EasyRSA can do this for you.
remote-cert-tls server

# If a tls-auth key is used on the server
# then every client must also have the key.
;tls-auth ta.key 1

# Select a cryptographic cipher.
# If the cipher option is used on the server
# then you must also specify it here.
;cipher x

# Enable compression on the VPN link.
# Don't enable this unless it is also
# enabled in the server config file.
comp-lzo

# Set log file verbosity.
verb 3

# Silence repeating messages
;mute 20
# Added lines via SSD Nodes tutorial
cipher AES-256-CBC
auth SHA512
key-direction 1

# script-security 2
# up /etc/openvpn/update-resolv-conf
# down /etc/openvpn/update-resolv-conf


3.
SERVER LOG (--verb 4):

Code: Select all

OpenVPN CLIENT LIST
Updated,Fri Nov 24 19:01:09 2017
Common Name,Real Address,Bytes Received,Bytes Sent,Connected Since
client,HOMEIP:58080,29088,5778,Fri Nov 24 19:00:48 2017
ROUTING TABLE
Virtual Address,Common Name,Real Address,Last Ref
10.8.0.6,client,HOMEIP:58080,Fri Nov 24 19:01:01 2017
GLOBAL STATS
Max bcast/mcast queue length,0
END
4.
CLIENT LOG (--verb 4):

Code: Select all

Sat Nov 25 04:54:40 2017 NOTE: --user option is not implemented on Windows
Sat Nov 25 04:54:40 2017 NOTE: --group option is not implemented on Windows
Sat Nov 25 04:54:40 2017 us=377932 Current Parameter Settings:
Sat Nov 25 04:54:40 2017 us=377932   config = 'client.ovpn'
Sat Nov 25 04:54:40 2017 us=377932   mode = 0
Sat Nov 25 04:54:40 2017 us=377932   show_ciphers = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   show_digests = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   show_engines = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   genkey = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   key_pass_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=377932   show_tls_ciphers = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   connect_retry_max = 0
Sat Nov 25 04:54:40 2017 us=377932 Connection profiles [0]:
Sat Nov 25 04:54:40 2017 us=377932   proto = udp
Sat Nov 25 04:54:40 2017 us=377932   local = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=377932   local_port = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=377932   remote = 'myserverIP'
Sat Nov 25 04:54:40 2017 us=377932   remote_port = '1194'
Sat Nov 25 04:54:40 2017 us=377932   remote_float = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   bind_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   bind_local = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   bind_ipv6_only = DISABLED
Sat Nov 25 04:54:40 2017 us=377932   connect_retry_seconds = 5
Sat Nov 25 04:54:40 2017 us=377932   connect_timeout = 120
Sat Nov 25 04:54:40 2017 us=377932   socks_proxy_server = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=377932   socks_proxy_port = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=377932   tun_mtu = 1500
Sat Nov 25 04:54:40 2017 us=377932   tun_mtu_defined = ENABLED
Sat Nov 25 04:54:40 2017 us=377932   link_mtu = 1500
Sat Nov 25 04:54:40 2017 us=378934   link_mtu_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   tun_mtu_extra = 0
Sat Nov 25 04:54:40 2017 us=378934   tun_mtu_extra_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   mtu_discover_type = -1
Sat Nov 25 04:54:40 2017 us=378934   fragment = 0
Sat Nov 25 04:54:40 2017 us=378934   mssfix = 1450
Sat Nov 25 04:54:40 2017 us=378934   explicit_exit_notification = 0
Sat Nov 25 04:54:40 2017 us=378934 Connection profiles END
Sat Nov 25 04:54:40 2017 us=378934   remote_random = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   ipchange = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   dev = 'tun'
Sat Nov 25 04:54:40 2017 us=378934   dev_type = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   dev_node = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   lladdr = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   topology = 1
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_local = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_remote_netmask = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_noexec = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_nowarn = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_ipv6_local = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_ipv6_netbits = 0
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_ipv6_remote = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   shaper = 0
Sat Nov 25 04:54:40 2017 us=378934   mtu_test = 0
Sat Nov 25 04:54:40 2017 us=378934   mlock = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   keepalive_ping = 0
Sat Nov 25 04:54:40 2017 us=378934   keepalive_timeout = 0
Sat Nov 25 04:54:40 2017 us=378934   inactivity_timeout = 0
Sat Nov 25 04:54:40 2017 us=378934   ping_send_timeout = 0
Sat Nov 25 04:54:40 2017 us=378934   ping_rec_timeout = 0
Sat Nov 25 04:54:40 2017 us=378934   ping_rec_timeout_action = 0
Sat Nov 25 04:54:40 2017 us=378934   ping_timer_remote = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   remap_sigusr1 = 0
Sat Nov 25 04:54:40 2017 us=378934   persist_tun = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   persist_local_ip = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   persist_remote_ip = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   persist_key = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   passtos = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   resolve_retry_seconds = 1000000000
Sat Nov 25 04:54:40 2017 us=378934   resolve_in_advance = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   username = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   groupname = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   chroot_dir = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   cd_dir = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   writepid = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   up_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   down_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   down_pre = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   up_restart = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   up_delay = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   daemon = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   inetd = 0
Sat Nov 25 04:54:40 2017 us=378934   log = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   suppress_timestamps = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   machine_readable_output = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   nice = 0
Sat Nov 25 04:54:40 2017 us=378934   verbosity = 4
Sat Nov 25 04:54:40 2017 us=378934   mute = 0
Sat Nov 25 04:54:40 2017 us=378934   gremlin = 0
Sat Nov 25 04:54:40 2017 us=378934   status_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   status_file_version = 1
Sat Nov 25 04:54:40 2017 us=378934   status_file_update_freq = 60
Sat Nov 25 04:54:40 2017 us=378934   occ = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   rcvbuf = 0
Sat Nov 25 04:54:40 2017 us=378934   sndbuf = 0
Sat Nov 25 04:54:40 2017 us=378934   sockflags = 0
Sat Nov 25 04:54:40 2017 us=378934   fast_io = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   comp.alg = 2
Sat Nov 25 04:54:40 2017 us=378934   comp.flags = 1
Sat Nov 25 04:54:40 2017 us=378934   route_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   route_default_gateway = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   route_default_metric = 0
Sat Nov 25 04:54:40 2017 us=378934   route_noexec = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   route_delay = 5
Sat Nov 25 04:54:40 2017 us=378934   route_delay_window = 30
Sat Nov 25 04:54:40 2017 us=378934   route_delay_defined = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   route_nopull = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   route_gateway_via_dhcp = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   allow_pull_fqdn = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   management_addr = '127.0.0.1'
Sat Nov 25 04:54:40 2017 us=378934   management_port = '25340'
Sat Nov 25 04:54:40 2017 us=378934   management_user_pass = 'stdin'
Sat Nov 25 04:54:40 2017 us=378934   management_log_history_cache = 250
Sat Nov 25 04:54:40 2017 us=378934   management_echo_buffer_size = 100
Sat Nov 25 04:54:40 2017 us=378934   management_write_peer_info_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   management_client_user = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   management_client_group = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   management_flags = 6
Sat Nov 25 04:54:40 2017 us=378934   shared_secret_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   key_direction = 2
Sat Nov 25 04:54:40 2017 us=378934   ciphername = 'AES-256-CBC'
Sat Nov 25 04:54:40 2017 us=378934   ncp_enabled = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   ncp_ciphers = 'AES-256-GCM:AES-128-GCM'
Sat Nov 25 04:54:40 2017 us=378934   authname = 'SHA512'
Sat Nov 25 04:54:40 2017 us=378934   prng_hash = 'SHA1'
Sat Nov 25 04:54:40 2017 us=378934   prng_nonce_secret_len = 16
Sat Nov 25 04:54:40 2017 us=378934   keysize = 0
Sat Nov 25 04:54:40 2017 us=378934   engine = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   replay = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   mute_replay_warnings = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   replay_window = 64
Sat Nov 25 04:54:40 2017 us=378934   replay_time = 15
Sat Nov 25 04:54:40 2017 us=378934   packet_id_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   use_iv = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   test_crypto = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   tls_server = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   tls_client = ENABLED
Sat Nov 25 04:54:40 2017 us=378934   key_method = 2
Sat Nov 25 04:54:40 2017 us=378934   ca_file = '[[INLINE]]'
Sat Nov 25 04:54:40 2017 us=378934   ca_path = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   dh_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   cert_file = '[[INLINE]]'
Sat Nov 25 04:54:40 2017 us=378934   extra_certs_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   priv_key_file = '[[INLINE]]'
Sat Nov 25 04:54:40 2017 us=378934   pkcs12_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   cryptoapi_cert = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   cipher_list = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   tls_verify = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   tls_export_cert = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   verify_x509_type = 0
Sat Nov 25 04:54:40 2017 us=378934   verify_x509_name = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   crl_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   ns_cert_type = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 65535
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_ku[i] = 0
Sat Nov 25 04:54:40 2017 us=378934   remote_cert_eku = 'TLS Web Server Authentication'
Sat Nov 25 04:54:40 2017 us=378934   ssl_flags = 0
Sat Nov 25 04:54:40 2017 us=378934   tls_timeout = 2
Sat Nov 25 04:54:40 2017 us=378934   renegotiate_bytes = -1
Sat Nov 25 04:54:40 2017 us=378934   renegotiate_packets = 0
Sat Nov 25 04:54:40 2017 us=378934   renegotiate_seconds = 3600
Sat Nov 25 04:54:40 2017 us=378934   handshake_window = 60
Sat Nov 25 04:54:40 2017 us=378934   transition_window = 3600
Sat Nov 25 04:54:40 2017 us=378934   single_session = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   push_peer_info = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   tls_exit = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   tls_auth_file = '[[INLINE]]'
Sat Nov 25 04:54:40 2017 us=378934   tls_crypt_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_protected_authentication = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_private_mode = 00000000
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_cert_private = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_pin_cache_period = -1
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_id = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=378934   pkcs11_id_management = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   server_network = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   server_netmask = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   server_network_ipv6 = ::
Sat Nov 25 04:54:40 2017 us=378934   server_netbits_ipv6 = 0
Sat Nov 25 04:54:40 2017 us=378934   server_bridge_ip = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   server_bridge_netmask = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   server_bridge_pool_start = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   server_bridge_pool_end = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_pool_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=378934   ifconfig_pool_start = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_pool_end = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_pool_netmask = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_pool_persist_filename = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_pool_persist_refresh_freq = 600
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_ipv6_pool_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_ipv6_pool_base = ::
Sat Nov 25 04:54:40 2017 us=379936   ifconfig_ipv6_pool_netbits = 0
Sat Nov 25 04:54:40 2017 us=379936   n_bcast_buf = 256
Sat Nov 25 04:54:40 2017 us=379936   tcp_queue_limit = 64
Sat Nov 25 04:54:40 2017 us=379936   real_hash_size = 256
Sat Nov 25 04:54:40 2017 us=379936   virtual_hash_size = 256
Sat Nov 25 04:54:40 2017 us=379936   client_connect_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   learn_address_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   client_disconnect_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   client_config_dir = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   ccd_exclusive = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   tmp_dir = 'C:\Users\winuser\AppData\Local\Temp\'
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_local = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_remote_netmask = 0.0.0.0
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_ipv6_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_ipv6_local = ::/0
Sat Nov 25 04:54:40 2017 us=379936   push_ifconfig_ipv6_remote = ::
Sat Nov 25 04:54:40 2017 us=379936   enable_c2c = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   duplicate_cn = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   cf_max = 0
Sat Nov 25 04:54:40 2017 us=379936   cf_per = 0
Sat Nov 25 04:54:40 2017 us=379936   max_clients = 1024
Sat Nov 25 04:54:40 2017 us=379936   max_routes_per_client = 256
Sat Nov 25 04:54:40 2017 us=379936   auth_user_pass_verify_script = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   auth_user_pass_verify_script_via_file = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   auth_token_generate = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   auth_token_lifetime = 0
Sat Nov 25 04:54:40 2017 us=379936   client = ENABLED
Sat Nov 25 04:54:40 2017 us=379936   pull = ENABLED
Sat Nov 25 04:54:40 2017 us=379936   auth_user_pass_file = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   show_net_up = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   route_method = 3
Sat Nov 25 04:54:40 2017 us=379936   block_outside_dns = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   ip_win32_defined = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   ip_win32_type = 3
Sat Nov 25 04:54:40 2017 us=379936   dhcp_masq_offset = 0
Sat Nov 25 04:54:40 2017 us=379936   dhcp_lease_time = 31536000
Sat Nov 25 04:54:40 2017 us=379936   tap_sleep = 0
Sat Nov 25 04:54:40 2017 us=379936   dhcp_options = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   dhcp_renew = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   dhcp_pre_release = DISABLED
Sat Nov 25 04:54:40 2017 us=379936   domain = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   netbios_scope = '[UNDEF]'
Sat Nov 25 04:54:40 2017 us=379936   netbios_node_type = 0
Sat Nov 25 04:54:40 2017 us=379936   disable_nbt = DISABLED
Sat Nov 25 04:54:40 2017 us=379936 OpenVPN 2.4.4 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Sep 26 2017
Sat Nov 25 04:54:40 2017 us=379936 Windows version 6.2 (Windows 8 or greater) 64bit
Sat Nov 25 04:54:40 2017 us=379936 library versions: OpenSSL 1.0.2l  25 May 2017, LZO 2.10
Enter Management Password:
Sat Nov 25 04:54:40 2017 us=379936 MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:25340
Sat Nov 25 04:54:40 2017 us=379936 Need hold release from management interface, waiting...
Sat Nov 25 04:54:40 2017 us=840846 MANAGEMENT: Client connected from [AF_INET]127.0.0.1:25340
Sat Nov 25 04:54:40 2017 us=942072 MANAGEMENT: CMD 'state on'
Sat Nov 25 04:54:40 2017 us=942943 MANAGEMENT: CMD 'log all on'
Sat Nov 25 04:54:41 2017 us=145864 MANAGEMENT: CMD 'echo all on'
Sat Nov 25 04:54:41 2017 us=146866 MANAGEMENT: CMD 'hold off'
Sat Nov 25 04:54:41 2017 us=149873 MANAGEMENT: CMD 'hold release'
Sat Nov 25 04:54:41 2017 us=251797 Outgoing Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Sat Nov 25 04:54:41 2017 us=251797 Incoming Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Sat Nov 25 04:54:41 2017 us=251797 LZO compression initializing
Sat Nov 25 04:54:41 2017 us=251797 Control Channel MTU parms [ L:1622 D:1140 EF:110 EB:0 ET:0 EL:3 ]
Sat Nov 25 04:54:41 2017 us=251797 Data Channel MTU parms [ L:1622 D:1450 EF:122 EB:406 ET:0 EL:3 ]
Sat Nov 25 04:54:41 2017 us=251797 Local Options String (VER=V4): 'V4,dev-type tun,link-mtu 1602,tun-mtu 1500,proto UDPv4,comp-lzo,keydir 1,cipher AES-256-CBC,auth SHA512,keysize 256,tls-auth,key-method 2,tls-client'
Sat Nov 25 04:54:41 2017 us=251797 Expected Remote Options String (VER=V4): 'V4,dev-type tun,link-mtu 1602,tun-mtu 1500,proto UDPv4,comp-lzo,keydir 0,cipher AES-256-CBC,auth SHA512,keysize 256,tls-auth,key-method 2,tls-server'
Sat Nov 25 04:54:41 2017 us=251797 TCP/UDP: Preserving recently used remote address: [AF_INET]myserverIP:1194
Sat Nov 25 04:54:41 2017 us=251797 Socket Buffers: R=[65536->65536] S=[65536->65536]
Sat Nov 25 04:54:41 2017 us=251797 UDP link local: (not bound)
Sat Nov 25 04:54:41 2017 us=251797 UDP link remote: [AF_INET]myserverIP:1194
Sat Nov 25 04:54:41 2017 us=251797 MANAGEMENT: >STATE:1511567681,WAIT,,,,,,
Sat Nov 25 04:54:41 2017 us=321785 MANAGEMENT: >STATE:1511567681,AUTH,,,,,,
Sat Nov 25 04:54:41 2017 us=321785 TLS: Initial packet from [AF_INET]myserverIP:1194, sid=d48a9532 4b06d0f2
Sat Nov 25 04:54:41 2017 us=419200 VERIFY OK: depth=1, C=US, ST=FL, L=lauderdale, O=Fort-Funston, OU=MyOrganizationalUnit, CN=Fort-Funston CA, name=vpsvpn, emailAddress=me@myhost.mydomain
Sat Nov 25 04:54:41 2017 us=420204 VERIFY KU OK
Sat Nov 25 04:54:41 2017 us=420204 Validating certificate extended key usage
Sat Nov 25 04:54:41 2017 us=420204 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
Sat Nov 25 04:54:41 2017 us=420204 VERIFY EKU OK
Sat Nov 25 04:54:41 2017 us=420204 VERIFY OK: depth=0, C=US, ST=FL, L=lauderdale, O=Fort-Funston, OU=MyOrganizationalUnit, CN=vpnserver, name=vpsvpn, emailAddress=me@myhost.mydomain
Sat Nov 25 04:54:41 2017 us=586869 Control Channel: TLSv1.2, cipher TLSv1/SSLv3 DHE-RSA-AES256-GCM-SHA384, 2048 bit RSA
Sat Nov 25 04:54:41 2017 us=587867 [vpnserver] Peer Connection Initiated with [AF_INET]myserverIP:1194
Sat Nov 25 04:54:42 2017 us=629538 MANAGEMENT: >STATE:1511567682,GET_CONFIG,,,,,,
Sat Nov 25 04:54:42 2017 us=629538 SENT CONTROL [vpnserver]: 'PUSH_REQUEST' (status=1)
Sat Nov 25 04:54:42 2017 us=701997 PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 8.8.8.8,dhcp-option DNS 8.8.4.4,route 10.8.0.1,topology net30,ping 10,ping-restart 120,ifconfig 10.8.0.6 10.8.0.5'
Sat Nov 25 04:54:42 2017 us=701997 OPTIONS IMPORT: timers and/or timeouts modified
Sat Nov 25 04:54:42 2017 us=701997 OPTIONS IMPORT: --ifconfig/up options modified
Sat Nov 25 04:54:42 2017 us=701997 OPTIONS IMPORT: route options modified
Sat Nov 25 04:54:42 2017 us=701997 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
Sat Nov 25 04:54:42 2017 us=701997 Data Channel MTU parms [ L:1602 D:1450 EF:102 EB:406 ET:0 EL:3 ]
Sat Nov 25 04:54:42 2017 us=701997 Outgoing Data Channel: Cipher 'AES-256-CBC' initialized with 256 bit key
Sat Nov 25 04:54:42 2017 us=701997 Outgoing Data Channel: Using 512 bit message hash 'SHA512' for HMAC authentication
Sat Nov 25 04:54:42 2017 us=701997 Incoming Data Channel: Cipher 'AES-256-CBC' initialized with 256 bit key
Sat Nov 25 04:54:42 2017 us=701997 Incoming Data Channel: Using 512 bit message hash 'SHA512' for HMAC authentication
Sat Nov 25 04:54:42 2017 us=701997 interactive service msg_channel=768
Sat Nov 25 04:54:42 2017 us=703881 ROUTE_GATEWAY 10.0.0.1/255.255.255.0 I=18 HWADDR=00:28:f8:09:eb:6a
Sat Nov 25 04:54:42 2017 us=711938 open_tun
Sat Nov 25 04:54:42 2017 us=711938 TAP-WIN32 device [Ethernet] opened: \\.\Global\{ADE97F6E-37E9-47BD-AF13-2370A92BB058}.tap
Sat Nov 25 04:54:42 2017 us=712967 TAP-Windows Driver Version 9.21 
Sat Nov 25 04:54:42 2017 us=712967 TAP-Windows MTU=1500
Sat Nov 25 04:54:42 2017 us=713969 Notified TAP-Windows driver to set a DHCP IP/netmask of 10.8.0.6/255.255.255.252 on interface {ADE97F6E-37E9-47BD-AF13-2370A92BB058} [DHCP-serv: 10.8.0.5, lease-time: 31536000]
Sat Nov 25 04:54:42 2017 us=713969 DHCP option string: 06080808 08080808 0404
Sat Nov 25 04:54:42 2017 us=713969 Successful ARP Flush on interface [13] {ADE97F6E-37E9-47BD-AF13-2370A92BB058}
Sat Nov 25 04:54:42 2017 us=715947 do_ifconfig, tt->did_ifconfig_ipv6_setup=0
Sat Nov 25 04:54:42 2017 us=715947 MANAGEMENT: >STATE:1511567682,ASSIGN_IP,,10.8.0.6,,,,
Sat Nov 25 04:54:48 2017 us=27361 TEST ROUTES: 2/2 succeeded len=1 ret=1 a=0 u/d=up
Sat Nov 25 04:54:48 2017 us=27361 C:\WINDOWS\system32\route.exe ADD myserverIP MASK 255.255.255.255 10.0.0.1
Sat Nov 25 04:54:48 2017 us=28364 Route addition via service succeeded
Sat Nov 25 04:54:48 2017 us=28364 C:\WINDOWS\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.8.0.5
Sat Nov 25 04:54:48 2017 us=30369 Route addition via service succeeded
Sat Nov 25 04:54:48 2017 us=30369 C:\WINDOWS\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.8.0.5
Sat Nov 25 04:54:48 2017 us=32375 Route addition via service succeeded
Sat Nov 25 04:54:48 2017 us=32375 MANAGEMENT: >STATE:1511567688,ADD_ROUTES,,,,,,
Sat Nov 25 04:54:48 2017 us=32375 C:\WINDOWS\system32\route.exe ADD 10.8.0.1 MASK 255.255.255.255 10.8.0.5
Sat Nov 25 04:54:48 2017 us=33377 Route addition via service succeeded
Sat Nov 25 04:54:48 2017 us=33377 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
Sat Nov 25 04:54:48 2017 us=33377 Initialization Sequence Completed
Sat Nov 25 04:54:48 2017 us=33377 MANAGEMENT: >STATE:1511567688,CONNECTED,SUCCESS,10.8.0.6,myserverIP,1194,,

keymouse
OpenVpn Newbie
Posts: 2
Joined: Fri Nov 24, 2017 11:49 pm

Re: How to avoid ipv6 leak

Post by keymouse » Thu Nov 30, 2017 4:31 pm

Hello.
It's been several days and I've tried a few things like changing proto udp to proto udp6, but that just ends up making the VPN unusable. Is there a way to make the openvpn configuration use ipv4 exclusively and prohibit the use of ipv6 instead of manually disabling ipv6 on each client?

Post Reply