Cannot connect to clients on Server Subnet

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
DaddyJ
OpenVpn Newbie
Posts: 4
Joined: Tue Nov 22, 2022 6:12 am

Cannot connect to clients on Server Subnet

Post by DaddyJ » Tue Nov 22, 2022 7:02 am

Hi there - I have been tearing my hair out trying to solve this issue with openvpn and I would kindly ask for expert help :-)

The VPN server is running on Windows Server 2016 (forwarding is enabled). I am able to connect to the server via a windows client tethered to my iphone and ping the ip of the open vpn server (10.8.0.1) - So will assume basic point to point vpn is working.

However I need to connect to clients on the server subnet in order to make use of the VPN. The open vpn server has an IP address of 192.168.0.10. The gateway on the network is 192.168.0.1

I specify a push "route 192.168.0.0 255.255.255.0" command in the server config. However I cannot ping or connect to clients on the 192.168.0.1/24 subnet. I have been able to make this work however by manually adding a route on the windows client. My best guess is that for some reason the client is not accepting the route command? A tracert on the client confirms the first hop is across the internet connection and not across the tunnel. I have tried the following steps to fix:

- Using the push "redirect-gateway local def1" option
- Putting a static route on the gateway (192.168.0.1) for 10.8.0.0 destinations

I'm stumped and not sure what to try next. Any help greatly appreciated.


Server Config

#################################################

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



# 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 server.crt

key server.key

# This file should be kept secret



# Diffie hellman parameters.

# Generate your own with:

# openssl dhparam -out dh2048.pem 2048

# dh dh2048.pem


dh dh.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.0.100



# 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"
# push "redirect-gateway local def1"
push "route 192.168.0.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 208.67.222.222"

;push "dhcp-option DNS 208.67.220.220"



# 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 tls-auth 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 # This file is secret



# Select a cryptographic cipher.

# This config item must be copied to

# the client config file as well.

# Note that v2.4 client/server will automatically

# negotiate AES-256-GCM in TLS mode.

# See also the ncp-cipher option in the manpage

cipher AES-256-CBC



# Enable compression on the VPN link and push the

# option to the client (v2.4+ only, for earlier

# versions see below)

;compress lz4-v2

;push "compress lz4-v2"



# For compression compatible with older clients use comp-lzo

# If you enable it here, you must also

# enable it in the client config file.

;comp-lzo
comp-lzo no



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

;group nobody



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

# the "\Program Files\OpenVPN\log" directory).

# Use log or log-append to override this default.

# "log" will truncate the log file on OpenVPN startup,

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



# Silence repeating messages. At most 20

# sequential messages of the same message

# category will be output to the log.

;mute 20



# Notify the client that when the server restarts so it

# can automatically reconnect.

explicit-exit-notify 1


clientconfig
##############################################

# 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 xxxxxx.duckdns.org 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 nobody



# 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 andylaptop.crt

key andylaptop.key



# Verify server certificate by checking that the

# certificate 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.

# Note that v2.4 client/server will automatically

# negotiate AES-256-GCM in TLS mode.

# See also the data-ciphers option in the manpage

cipher AES-256-CBC



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



# Silence repeating messages

;mute 20


Server Log

Code: Select all


2022-11-22 19:41:35 us=343000 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2022-11-22 19:41:35 us=359000 --pull-filter ignored for --mode server
2022-11-22 19:41:35 us=359000 Current Parameter Settings:
2022-11-22 19:41:35 us=359000   config = 'jessettnet.ovpn'
2022-11-22 19:41:35 us=359000   mode = 1
2022-11-22 19:41:35 us=359000   show_ciphers = DISABLED
2022-11-22 19:41:35 us=359000   show_digests = DISABLED
2022-11-22 19:41:35 us=359000   show_engines = DISABLED
2022-11-22 19:41:35 us=359000   genkey = DISABLED
2022-11-22 19:41:35 us=359000   genkey_filename = '[UNDEF]'
2022-11-22 19:41:35 us=359000   key_pass_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   show_tls_ciphers = DISABLED
2022-11-22 19:41:35 us=359000   connect_retry_max = 0
2022-11-22 19:41:35 us=359000 Connection profiles [0]:
2022-11-22 19:41:35 us=359000   proto = udp
2022-11-22 19:41:35 us=359000   local = '[UNDEF]'
2022-11-22 19:41:35 us=359000   local_port = '1194'
2022-11-22 19:41:35 us=359000   remote = '[UNDEF]'
2022-11-22 19:41:35 us=359000   remote_port = '1194'
2022-11-22 19:41:35 us=359000   remote_float = DISABLED
2022-11-22 19:41:35 us=359000   bind_defined = DISABLED
2022-11-22 19:41:35 us=359000   bind_local = ENABLED
2022-11-22 19:41:35 us=359000   bind_ipv6_only = DISABLED
2022-11-22 19:41:35 us=359000   connect_retry_seconds = 5
2022-11-22 19:41:35 us=359000   connect_timeout = 120
2022-11-22 19:41:35 us=359000   socks_proxy_server = '[UNDEF]'
2022-11-22 19:41:35 us=359000   socks_proxy_port = '[UNDEF]'
2022-11-22 19:41:35 us=359000   tun_mtu = 1500
2022-11-22 19:41:35 us=359000   tun_mtu_defined = ENABLED
2022-11-22 19:41:35 us=359000   link_mtu = 1500
2022-11-22 19:41:35 us=359000   link_mtu_defined = DISABLED
2022-11-22 19:41:35 us=359000   tun_mtu_extra = 0
2022-11-22 19:41:35 us=359000   tun_mtu_extra_defined = DISABLED
2022-11-22 19:41:35 us=359000   mtu_discover_type = -1
2022-11-22 19:41:35 us=359000   fragment = 0
2022-11-22 19:41:35 us=359000   mssfix = 1450
2022-11-22 19:41:35 us=359000   explicit_exit_notification = 1
2022-11-22 19:41:35 us=359000   tls_auth_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   key_direction = not set
2022-11-22 19:41:35 us=359000   tls_crypt_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   tls_crypt_v2_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000 Connection profiles END
2022-11-22 19:41:35 us=359000   remote_random = DISABLED
2022-11-22 19:41:35 us=359000   ipchange = '[UNDEF]'
2022-11-22 19:41:35 us=359000   dev = 'tun'
2022-11-22 19:41:35 us=359000   dev_type = '[UNDEF]'
2022-11-22 19:41:35 us=359000   dev_node = '[UNDEF]'
2022-11-22 19:41:35 us=359000   lladdr = '[UNDEF]'
2022-11-22 19:41:35 us=359000   topology = 3
2022-11-22 19:41:35 us=359000   ifconfig_local = '10.8.0.1'
2022-11-22 19:41:35 us=359000   ifconfig_remote_netmask = '255.255.255.0'
2022-11-22 19:41:35 us=359000   ifconfig_noexec = DISABLED
2022-11-22 19:41:35 us=359000   ifconfig_nowarn = DISABLED
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_local = '[UNDEF]'
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_netbits = 0
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_remote = '[UNDEF]'
2022-11-22 19:41:35 us=359000   shaper = 0
2022-11-22 19:41:35 us=359000   mtu_test = 0
2022-11-22 19:41:35 us=359000   mlock = DISABLED
2022-11-22 19:41:35 us=359000   keepalive_ping = 10
2022-11-22 19:41:35 us=359000   keepalive_timeout = 120
2022-11-22 19:41:35 us=359000   inactivity_timeout = 0
2022-11-22 19:41:35 us=359000   inactivity_minimum_bytes = 0
2022-11-22 19:41:35 us=359000   ping_send_timeout = 10
2022-11-22 19:41:35 us=359000   ping_rec_timeout = 240
2022-11-22 19:41:35 us=359000   ping_rec_timeout_action = 2
2022-11-22 19:41:35 us=359000   ping_timer_remote = DISABLED
2022-11-22 19:41:35 us=359000   remap_sigusr1 = 0
2022-11-22 19:41:35 us=359000   persist_tun = ENABLED
2022-11-22 19:41:35 us=359000   persist_local_ip = DISABLED
2022-11-22 19:41:35 us=359000   persist_remote_ip = DISABLED
2022-11-22 19:41:35 us=359000   persist_key = ENABLED
2022-11-22 19:41:35 us=359000   passtos = DISABLED
2022-11-22 19:41:35 us=359000   resolve_retry_seconds = 1000000000
2022-11-22 19:41:35 us=359000   resolve_in_advance = DISABLED
2022-11-22 19:41:35 us=359000   username = '[UNDEF]'
2022-11-22 19:41:35 us=359000   groupname = '[UNDEF]'
2022-11-22 19:41:35 us=359000   chroot_dir = '[UNDEF]'
2022-11-22 19:41:35 us=359000   cd_dir = '[UNDEF]'
2022-11-22 19:41:35 us=359000   writepid = '[UNDEF]'
2022-11-22 19:41:35 us=359000   up_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   down_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   down_pre = DISABLED
2022-11-22 19:41:35 us=359000   up_restart = DISABLED
2022-11-22 19:41:35 us=359000   up_delay = DISABLED
2022-11-22 19:41:35 us=359000   daemon = DISABLED
2022-11-22 19:41:35 us=359000   inetd = 0
2022-11-22 19:41:35 us=359000   log = ENABLED
2022-11-22 19:41:35 us=359000   suppress_timestamps = DISABLED
2022-11-22 19:41:35 us=359000   machine_readable_output = DISABLED
2022-11-22 19:41:35 us=359000   nice = 0
2022-11-22 19:41:35 us=359000   verbosity = 6
2022-11-22 19:41:35 us=359000   mute = 0
2022-11-22 19:41:35 us=359000   status_file = 'openvpn-status.log'
2022-11-22 19:41:35 us=359000   status_file_version = 1
2022-11-22 19:41:35 us=359000   status_file_update_freq = 60
2022-11-22 19:41:35 us=359000   occ = ENABLED
2022-11-22 19:41:35 us=359000   rcvbuf = 0
2022-11-22 19:41:35 us=359000   sndbuf = 0
2022-11-22 19:41:35 us=359000   sockflags = 0
2022-11-22 19:41:35 us=359000   fast_io = DISABLED
2022-11-22 19:41:35 us=359000   comp.alg = 0
2022-11-22 19:41:35 us=359000   comp.flags = 0
2022-11-22 19:41:35 us=359000   route_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   route_default_gateway = '10.8.0.2'
2022-11-22 19:41:35 us=359000   route_default_metric = 0
2022-11-22 19:41:35 us=359000   route_noexec = DISABLED
2022-11-22 19:41:35 us=359000   route_delay = 0
2022-11-22 19:41:35 us=359000   route_delay_window = 30
2022-11-22 19:41:35 us=359000   route_delay_defined = DISABLED
2022-11-22 19:41:35 us=359000   route_nopull = DISABLED
2022-11-22 19:41:35 us=359000   route_gateway_via_dhcp = DISABLED
2022-11-22 19:41:35 us=359000   allow_pull_fqdn = DISABLED
2022-11-22 19:41:35 us=359000   Pull filters:
2022-11-22 19:41:35 us=359000     ignore "route-method"
2022-11-22 19:41:35 us=359000   management_addr = '127.0.0.1'
2022-11-22 19:41:35 us=359000   management_port = '25340'
2022-11-22 19:41:35 us=359000   management_user_pass = 'stdin'
2022-11-22 19:41:35 us=359000   management_log_history_cache = 250
2022-11-22 19:41:35 us=359000   management_echo_buffer_size = 100
2022-11-22 19:41:35 us=359000   management_write_peer_info_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   management_client_user = '[UNDEF]'
2022-11-22 19:41:35 us=359000   management_client_group = '[UNDEF]'
2022-11-22 19:41:35 us=359000   management_flags = 6
2022-11-22 19:41:35 us=359000   shared_secret_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   key_direction = not set
2022-11-22 19:41:35 us=359000   ciphername = 'AES-256-CBC'
2022-11-22 19:41:35 us=359000   ncp_enabled = ENABLED
2022-11-22 19:41:35 us=359000   ncp_ciphers = 'AES-256-GCM:AES-128-GCM:AES-256-CBC'
2022-11-22 19:41:35 us=359000   authname = 'SHA1'
2022-11-22 19:41:35 us=359000   prng_hash = 'SHA1'
2022-11-22 19:41:35 us=359000   prng_nonce_secret_len = 16
2022-11-22 19:41:35 us=359000   keysize = 0
2022-11-22 19:41:35 us=359000   engine = DISABLED
2022-11-22 19:41:35 us=359000   replay = ENABLED
2022-11-22 19:41:35 us=359000   mute_replay_warnings = DISABLED
2022-11-22 19:41:35 us=359000   replay_window = 64
2022-11-22 19:41:35 us=359000   replay_time = 15
2022-11-22 19:41:35 us=359000   packet_id_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   test_crypto = DISABLED
2022-11-22 19:41:35 us=359000   tls_server = ENABLED
2022-11-22 19:41:35 us=359000   tls_client = DISABLED
2022-11-22 19:41:35 us=359000   ca_file = 'ca.crt'
2022-11-22 19:41:35 us=359000   ca_path = '[UNDEF]'
2022-11-22 19:41:35 us=359000   dh_file = 'dh.pem'
2022-11-22 19:41:35 us=359000   cert_file = 'server.crt'
2022-11-22 19:41:35 us=359000   extra_certs_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   priv_key_file = 'server.key'
2022-11-22 19:41:35 us=359000   pkcs12_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   cryptoapi_cert = '[UNDEF]'
2022-11-22 19:41:35 us=359000   cipher_list = '[UNDEF]'
2022-11-22 19:41:35 us=359000   cipher_list_tls13 = '[UNDEF]'
2022-11-22 19:41:35 us=359000   tls_cert_profile = '[UNDEF]'
2022-11-22 19:41:35 us=359000   tls_verify = '[UNDEF]'
2022-11-22 19:41:35 us=359000   tls_export_cert = '[UNDEF]'
2022-11-22 19:41:35 us=359000   verify_x509_type = 0
2022-11-22 19:41:35 us=359000   verify_x509_name = '[UNDEF]'
2022-11-22 19:41:35 us=359000   crl_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   ns_cert_type = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_ku[i] = 0
2022-11-22 19:41:35 us=359000   remote_cert_eku = '[UNDEF]'
2022-11-22 19:41:35 us=359000   ssl_flags = 0
2022-11-22 19:41:35 us=359000   tls_timeout = 2
2022-11-22 19:41:35 us=359000   renegotiate_bytes = -1
2022-11-22 19:41:35 us=359000   renegotiate_packets = 0
2022-11-22 19:41:35 us=359000   renegotiate_seconds = 3600
2022-11-22 19:41:35 us=359000   handshake_window = 60
2022-11-22 19:41:35 us=359000   transition_window = 3600
2022-11-22 19:41:35 us=359000   single_session = DISABLED
2022-11-22 19:41:35 us=359000   push_peer_info = DISABLED
2022-11-22 19:41:35 us=359000   tls_exit = DISABLED
2022-11-22 19:41:35 us=359000   tls_crypt_v2_metadata = '[UNDEF]'
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_protected_authentication = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_private_mode = 00000000
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_cert_private = DISABLED
2022-11-22 19:41:35 us=359000   pkcs11_pin_cache_period = -1
2022-11-22 19:41:35 us=359000   pkcs11_id = '[UNDEF]'
2022-11-22 19:41:35 us=359000   pkcs11_id_management = DISABLED
2022-11-22 19:41:35 us=359000   server_network = 10.8.0.0
2022-11-22 19:41:35 us=359000   server_netmask = 255.255.255.0
2022-11-22 19:41:35 us=359000   server_network_ipv6 = ::
2022-11-22 19:41:35 us=359000   server_netbits_ipv6 = 0
2022-11-22 19:41:35 us=359000   server_bridge_ip = 0.0.0.0
2022-11-22 19:41:35 us=359000   server_bridge_netmask = 0.0.0.0
2022-11-22 19:41:35 us=359000   server_bridge_pool_start = 0.0.0.0
2022-11-22 19:41:35 us=359000   server_bridge_pool_end = 0.0.0.0
2022-11-22 19:41:35 us=359000   push_entry = 'route-gateway 10.8.0.1'
2022-11-22 19:41:35 us=359000   push_entry = 'topology subnet'
2022-11-22 19:41:35 us=359000   push_entry = 'ping 10'
2022-11-22 19:41:35 us=359000   push_entry = 'ping-restart 120'
2022-11-22 19:41:35 us=359000   ifconfig_pool_defined = ENABLED
2022-11-22 19:41:35 us=359000   ifconfig_pool_start = 10.8.0.2
2022-11-22 19:41:35 us=359000   ifconfig_pool_end = 10.8.0.254
2022-11-22 19:41:35 us=359000   ifconfig_pool_netmask = 255.255.255.0
2022-11-22 19:41:35 us=359000   ifconfig_pool_persist_filename = 'ipp.txt'
2022-11-22 19:41:35 us=359000   ifconfig_pool_persist_refresh_freq = 600
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_pool_defined = DISABLED
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_pool_base = ::
2022-11-22 19:41:35 us=359000   ifconfig_ipv6_pool_netbits = 0
2022-11-22 19:41:35 us=359000   n_bcast_buf = 256
2022-11-22 19:41:35 us=359000   tcp_queue_limit = 64
2022-11-22 19:41:35 us=359000   real_hash_size = 256
2022-11-22 19:41:35 us=359000   virtual_hash_size = 256
2022-11-22 19:41:35 us=359000   client_connect_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   learn_address_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   client_disconnect_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   client_config_dir = '[UNDEF]'
2022-11-22 19:41:35 us=359000   ccd_exclusive = DISABLED
2022-11-22 19:41:35 us=359000   tmp_dir = 'C:\Users\ADMINI~1\AppData\Local\Temp\'
2022-11-22 19:41:35 us=359000   push_ifconfig_defined = DISABLED
2022-11-22 19:41:35 us=359000   push_ifconfig_local = 0.0.0.0
2022-11-22 19:41:35 us=359000   push_ifconfig_remote_netmask = 0.0.0.0
2022-11-22 19:41:35 us=359000   push_ifconfig_ipv6_defined = DISABLED
2022-11-22 19:41:35 us=359000   push_ifconfig_ipv6_local = ::/0
2022-11-22 19:41:35 us=359000   push_ifconfig_ipv6_remote = ::
2022-11-22 19:41:35 us=359000   enable_c2c = DISABLED
2022-11-22 19:41:35 us=359000   duplicate_cn = DISABLED
2022-11-22 19:41:35 us=359000   cf_max = 0
2022-11-22 19:41:35 us=359000   cf_per = 0
2022-11-22 19:41:35 us=359000   max_clients = 1024
2022-11-22 19:41:35 us=359000   max_routes_per_client = 256
2022-11-22 19:41:35 us=359000   auth_user_pass_verify_script = '[UNDEF]'
2022-11-22 19:41:35 us=359000   auth_user_pass_verify_script_via_file = DISABLED
2022-11-22 19:41:35 us=359000   auth_token_generate = DISABLED
2022-11-22 19:41:35 us=359000   auth_token_lifetime = 0
2022-11-22 19:41:35 us=359000   auth_token_secret_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   vlan_tagging = DISABLED
2022-11-22 19:41:35 us=359000   vlan_accept = all
2022-11-22 19:41:35 us=359000   vlan_pvid = 1
2022-11-22 19:41:35 us=359000   client = DISABLED
2022-11-22 19:41:35 us=359000   pull = DISABLED
2022-11-22 19:41:35 us=359000   auth_user_pass_file = '[UNDEF]'
2022-11-22 19:41:35 us=359000   show_net_up = DISABLED
2022-11-22 19:41:35 us=359000   route_method = 3
2022-11-22 19:41:35 us=359000   block_outside_dns = DISABLED
2022-11-22 19:41:35 us=359000   ip_win32_defined = DISABLED
2022-11-22 19:41:35 us=359000   ip_win32_type = 3
2022-11-22 19:41:35 us=359000   dhcp_masq_offset = 0
2022-11-22 19:41:35 us=359000   dhcp_lease_time = 31536000
2022-11-22 19:41:35 us=359000   tap_sleep = 10
2022-11-22 19:41:35 us=359000   dhcp_options = DISABLED
2022-11-22 19:41:35 us=359000   dhcp_renew = DISABLED
2022-11-22 19:41:35 us=359000   dhcp_pre_release = DISABLED
2022-11-22 19:41:35 us=359000   domain = '[UNDEF]'
2022-11-22 19:41:35 us=359000   netbios_scope = '[UNDEF]'
2022-11-22 19:41:35 us=359000   netbios_node_type = 0
2022-11-22 19:41:35 us=359000   disable_nbt = DISABLED
2022-11-22 19:41:35 us=359000 OpenVPN 2.5.8 [git:release/2.5/0357ceb877687faa] Windows-MSVC [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Nov 11 2022
2022-11-22 19:41:35 us=359000 Windows version 10.0 (Windows 10 or greater) 64bit
2022-11-22 19:41:35 us=359000 library versions: OpenSSL 1.1.1s  1 Nov 2022, LZO 2.10
2022-11-22 19:41:35 us=359000 MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:25340
2022-11-22 19:41:35 us=359000 Need hold release from management interface, waiting...
2022-11-22 19:41:35 us=796000 MANAGEMENT: Client connected from [AF_INET]127.0.0.1:25340
2022-11-22 19:41:35 us=906000 MANAGEMENT: CMD 'state on'
2022-11-22 19:41:35 us=906000 MANAGEMENT: CMD 'log on all'
2022-11-22 19:41:36 us=375000 MANAGEMENT: CMD 'echo on all'
2022-11-22 19:41:36 us=390000 MANAGEMENT: CMD 'bytecount 5'
2022-11-22 19:41:36 us=390000 MANAGEMENT: CMD 'state'
2022-11-22 19:41:36 us=390000 MANAGEMENT: CMD 'hold off'
2022-11-22 19:41:36 us=406000 MANAGEMENT: CMD 'hold release'
2022-11-22 19:41:36 us=406000 NOTE: your local LAN uses the extremely common subnet address 192.168.0.x or 192.168.1.x.  Be aware that this might create routing conflicts if you connect to the VPN server from public locations such as internet cafes that use the same subnet.
2022-11-22 19:41:36 us=421000 Diffie-Hellman initialized with 2048 bit key
2022-11-22 19:41:36 us=421000 TLS-Auth MTU parms [ L:1621 D:1212 EF:38 EB:0 ET:0 EL:3 ]
2022-11-22 19:41:36 us=421000 interactive service msg_channel=500
2022-11-22 19:41:36 us=421000 open_tun
2022-11-22 19:41:36 us=437000 tap-windows6 device [OpenVPN TAP-Windows6] opened
2022-11-22 19:41:36 us=437000 TAP-Windows Driver Version 9.24 
2022-11-22 19:41:36 us=437000 TAP-Windows MTU=1500
2022-11-22 19:41:36 us=437000 Set TAP-Windows TUN subnet mode network/local/netmask = 10.8.0.0/10.8.0.1/255.255.255.0 [SUCCEEDED]
2022-11-22 19:41:36 us=437000 Notified TAP-Windows driver to set a DHCP IP/netmask of 10.8.0.1/255.255.255.0 on interface {84B08FCA-7421-44D6-B47E-FEA99F7FCD4D} [DHCP-serv: 10.8.0.0, lease-time: 31536000]
2022-11-22 19:41:36 us=437000 Sleeping for 10 seconds...
2022-11-22 19:41:46 us=437000 Successful ARP Flush on interface [9] {84B08FCA-7421-44D6-B47E-FEA99F7FCD4D}
2022-11-22 19:41:46 us=453000 do_ifconfig, ipv4=1, ipv6=0
2022-11-22 19:41:46 us=453000 MANAGEMENT: >STATE:1669099306,ASSIGN_IP,,10.8.0.1,,,,
2022-11-22 19:41:46 us=453000 IPv4 MTU set to 1500 on interface 9 using service
2022-11-22 19:41:46 us=453000 Data Channel MTU parms [ L:1621 D:1450 EF:121 EB:406 ET:0 EL:3 ]
2022-11-22 19:41:46 us=453000 Could not determine IPv4/IPv6 protocol. Using AF_INET6
2022-11-22 19:41:46 us=453000 Socket Buffers: R=[65536->65536] S=[65536->65536]
2022-11-22 19:41:46 us=453000 setsockopt(IPV6_V6ONLY=0)
2022-11-22 19:41:46 us=453000 UDPv6 link local (bound): [AF_INET6][undef]:1194
2022-11-22 19:41:46 us=453000 UDPv6 link remote: [AF_UNSPEC]
2022-11-22 19:41:46 us=453000 MULTI: multi_init called, r=256 v=256
2022-11-22 19:41:46 us=453000 IFCONFIG POOL IPv4: base=10.8.0.2 size=253
2022-11-22 19:41:46 us=453000 ifconfig_pool_read(), in='andylaptop,10.8.0.4,'
2022-11-22 19:41:46 us=453000 succeeded -> ifconfig_pool_set(hand=2)
2022-11-22 19:41:46 us=453000 IFCONFIG POOL LIST
2022-11-22 19:41:46 us=453000 andylaptop,10.8.0.4,
2022-11-22 19:41:46 us=453000 Initialization Sequence Completed
2022-11-22 19:41:46 us=453000 MANAGEMENT: >STATE:1669099306,CONNECTED,SUCCESS,10.8.0.1,,,,
2022-11-22 19:43:00 us=343000 MULTI: multi_create_instance called
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 Re-using SSL/TLS context
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 Control Channel MTU parms [ L:1621 D:1212 EF:38 EB:0 ET:0 EL:3 ]
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 Data Channel MTU parms [ L:1621 D:1450 EF:121 EB:406 ET:0 EL:3 ]
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 Local Options String (VER=V4): 'V4,dev-type tun,link-mtu 1557,tun-mtu 1500,proto UDPv4,cipher AES-256-CBC,auth SHA1,keysize 256,key-method 2,tls-server'
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 Expected Remote Options String (VER=V4): 'V4,dev-type tun,link-mtu 1557,tun-mtu 1500,proto UDPv4,cipher AES-256-CBC,auth SHA1,keysize 256,key-method 2,tls-client'
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 UDPv6 READ [14] from [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_HARD_RESET_CLIENT_V2 kid=0 [ ] pid=0 DATA len=0
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 TLS: Initial packet from [AF_INET6]::ffff:49.224.98.101:59753, sid=b330e5c5 e7064ff2
2022-11-22 19:43:00 us=343000 49.224.98.101:59753 UDPv6 WRITE [26] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_HARD_RESET_SERVER_V2 kid=0 [ 0 ] pid=0 DATA len=0
2022-11-22 19:43:00 us=421000 49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 0 ]
2022-11-22 19:43:00 us=421000 49.224.98.101:59753 UDPv6 READ [291] from [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=1 DATA len=277
2022-11-22 19:43:00 us=437000 49.224.98.101:59753 UDPv6 WRITE [1200] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ 1 ] pid=1 DATA len=1174
2022-11-22 19:43:00 us=437000 49.224.98.101:59753 UDPv6 WRITE [1188] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=2 DATA len=1174
2022-11-22 19:43:00 us=437000 49.224.98.101:59753 UDPv6 WRITE [53] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=3 DATA len=39
2022-11-22 19:43:00 us=500000 49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 1 ]
2022-11-22 19:43:00 us=500000 49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 2 ]
2022-11-22 19:43:00 us=500000 49.224.98.101:59753 UDPv6 READ [1200] from [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ 3 ] pid=2 DATA len=1174
2022-11-22 19:43:00 us=500000 49.224.98.101:59753 UDPv6 WRITE [22] to [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 2 ]
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 UDPv6 READ [1188] from [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=3 DATA len=1174
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 VERIFY OK: depth=1, CN=Easy-RSA CA
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 VERIFY OK: depth=0, CN=andylaptop
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 UDPv6 WRITE [184] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ 3 ] pid=4 DATA len=158
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 UDPv6 READ [260] from [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=4 DATA len=246
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_VER=2.5.8
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_PLAT=win
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_PROTO=6
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_NCP=2
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_CIPHERS=AES-256-GCM:AES-128-GCM:AES-256-CBC
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_LZ4=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_LZ4v2=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_LZO=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_COMP_STUB=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_COMP_STUBv2=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_TCPNL=1
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_GUI_VER=OpenVPN_GUI_11
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 peer info: IV_SSO=openurl,crtext
2022-11-22 19:43:00 us=515000 49.224.98.101:59753 UDPv6 WRITE [245] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ 4 ] pid=5 DATA len=219
2022-11-22 19:43:00 us=562000 49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 4 ]
2022-11-22 19:43:00 us=562000 49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 5 ]
2022-11-22 19:43:00 us=562000 49.224.98.101:59753 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256
2022-11-22 19:43:00 us=562000 49.224.98.101:59753 [andylaptop] Peer Connection Initiated with [AF_INET6]::ffff:49.224.98.101:59753
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 MULTI_sva: pool returned IPv4=10.8.0.4, IPv6=(Not enabled)
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 MULTI: Learn: 10.8.0.4 -> andylaptop/49.224.98.101:59753
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 MULTI: primary virtual IP for andylaptop/49.224.98.101:59753: 10.8.0.4
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 Data Channel: using negotiated cipher 'AES-256-GCM'
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 Data Channel MTU parms [ L:1549 D:1450 EF:49 EB:406 ET:0 EL:3 ]
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 SENT CONTROL [andylaptop]: 'PUSH_REPLY,route-gateway 10.8.0.1,topology subnet,ping 10,ping-restart 120,ifconfig 10.8.0.4 255.255.255.0,peer-id 0,cipher AES-256-GCM' (status=1)
2022-11-22 19:43:00 us=562000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [172] to [AF_INET6]::ffff:49.224.98.101:59753: P_CONTROL_V1 kid=0 [ ] pid=6 DATA len=158
2022-11-22 19:43:00 us=656000 andylaptop/49.224.98.101:59753 UDPv6 READ [22] from [AF_INET6]::ffff:49.224.98.101:59753: P_ACK_V1 kid=0 [ 6 ]
2022-11-22 19:43:00 us=671000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:00 us=687000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:00 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:00 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:00 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:00 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:00 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [111] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=110
2022-11-22 19:43:00 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [149] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=148
2022-11-22 19:43:01 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [88] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=87
2022-11-22 19:43:01 us=140000 andylaptop/49.224.98.101:59753 MULTI: bad source address from client [::], packet dropped
2022-11-22 19:43:01 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [72] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=71
2022-11-22 19:43:01 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [160] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=159
2022-11-22 19:43:01 us=640000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=687000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:02 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [96] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=95
2022-11-22 19:43:02 us=156000 andylaptop/49.224.98.101:59753 UDPv6 READ [120] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=119
2022-11-22 19:43:02 us=156000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:02 us=156000 andylaptop/49.224.98.101:59753 UDPv6 READ [100] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:02 us=156000 andylaptop/49.224.98.101:59753 UDPv6 READ [111] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=110
2022-11-22 19:43:02 us=156000 andylaptop/49.224.98.101:59753 UDPv6 READ [149] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=148
2022-11-22 19:43:02 us=640000 andylaptop/49.224.98.101:59753 UDPv6 READ [120] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=119
2022-11-22 19:43:03 us=687000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:05 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [80] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=79
2022-11-22 19:43:05 us=250000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:05 us=250000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:07 us=687000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:08 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:08 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:09 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [80] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=79
2022-11-22 19:43:09 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:09 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:10 us=875000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:11 us=781000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:11 us=781000 andylaptop/49.224.98.101:59753 UDPv6 READ [112] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:15 us=687000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:20 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:25 us=812000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:30 us=218000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:31 us=703000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:34 us=796000 andylaptop/49.224.98.101:59753 UDPv6 READ [84] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:34 us=796000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [84] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:35 us=812000 andylaptop/49.224.98.101:59753 UDPv6 READ [84] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:35 us=812000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [84] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:45 us=265000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:45 us=343000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:55 us=937000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:56 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:03 us=718000 andylaptop/49.224.98.101:59753 UDPv6 READ [167] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:44:06 us=31000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:14 us=234000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:16 us=609000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:24 us=671000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:26 us=859000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:35 us=171000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:36 us=187000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:45 us=656000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:46 us=843000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:55 us=875000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:56 us=843000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:06 us=78000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:06 us=78000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:15 us=656000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:16 us=734000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:26 us=31000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:26 us=31000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:36 us=140000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:36 us=140000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:46 us=484000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:46 us=484000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:56 us=515000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:56 us=593000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:06 us=171000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:06 us=515000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:16 us=109000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:16 us=171000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:26 us=640000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:26 us=640000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:36 us=531000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:36 us=531000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:46 us=750000 andylaptop/49.224.98.101:59753 UDPv6 READ [40] from [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:46:46 us=750000 andylaptop/49.224.98.101:59753 UDPv6 WRITE [40] to [AF_INET6]::ffff:49.224.98.101:59753: P_DATA_V2 kid=0 DATA len=39

DaddyJ
OpenVpn Newbie
Posts: 4
Joined: Tue Nov 22, 2022 6:12 am

Re: Cannot connect to clients on Server Subnet

Post by DaddyJ » Tue Nov 22, 2022 8:05 am

Whoops and the client log

Code: Select all

2022-11-22 19:43:00 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM). Future OpenVPN version will ignore --cipher for cipher negotiations. Add 'AES-256-CBC' to --data-ciphers or change --cipher 'AES-256-CBC' to --data-ciphers-fallback 'AES-256-CBC' to silence this warning.
2022-11-22 19:43:00 Current Parameter Settings:
2022-11-22 19:43:00   config = 'andylaptop.ovpn'
2022-11-22 19:43:00   mode = 0
2022-11-22 19:43:00   show_ciphers = DISABLED
2022-11-22 19:43:00   show_digests = DISABLED
2022-11-22 19:43:00   show_engines = DISABLED
2022-11-22 19:43:00   genkey = DISABLED
2022-11-22 19:43:00   genkey_filename = '[UNDEF]'
2022-11-22 19:43:00   key_pass_file = '[UNDEF]'
2022-11-22 19:43:00   show_tls_ciphers = DISABLED
2022-11-22 19:43:00   connect_retry_max = 0
2022-11-22 19:43:00 Connection profiles [0]:
2022-11-22 19:43:00   proto = udp
2022-11-22 19:43:00   local = '[UNDEF]'
2022-11-22 19:43:00   local_port = '[UNDEF]'
2022-11-22 19:43:00   remote = 'jessettnet.duckdns.org'
2022-11-22 19:43:00   remote_port = '1194'
2022-11-22 19:43:00   remote_float = DISABLED
2022-11-22 19:43:00   bind_defined = DISABLED
2022-11-22 19:43:00   bind_local = DISABLED
2022-11-22 19:43:00   bind_ipv6_only = DISABLED
2022-11-22 19:43:00   connect_retry_seconds = 5
2022-11-22 19:43:00   connect_timeout = 120
2022-11-22 19:43:00   socks_proxy_server = '[UNDEF]'
2022-11-22 19:43:00   socks_proxy_port = '[UNDEF]'
2022-11-22 19:43:00   tun_mtu = 1500
2022-11-22 19:43:00   tun_mtu_defined = ENABLED
2022-11-22 19:43:00   link_mtu = 1500
2022-11-22 19:43:00   link_mtu_defined = DISABLED
2022-11-22 19:43:00   tun_mtu_extra = 0
2022-11-22 19:43:00   tun_mtu_extra_defined = DISABLED
2022-11-22 19:43:00   mtu_discover_type = -1
2022-11-22 19:43:00   fragment = 0
2022-11-22 19:43:00   mssfix = 1450
2022-11-22 19:43:00   explicit_exit_notification = 0
2022-11-22 19:43:00   tls_auth_file = '[UNDEF]'
2022-11-22 19:43:00   key_direction = not set
2022-11-22 19:43:00   tls_crypt_file = '[UNDEF]'
2022-11-22 19:43:00   tls_crypt_v2_file = '[UNDEF]'
2022-11-22 19:43:00 Connection profiles END
2022-11-22 19:43:00   remote_random = DISABLED
2022-11-22 19:43:00   ipchange = '[UNDEF]'
2022-11-22 19:43:00   dev = 'tun'
2022-11-22 19:43:00   dev_type = '[UNDEF]'
2022-11-22 19:43:00   dev_node = '[UNDEF]'
2022-11-22 19:43:00   lladdr = '[UNDEF]'
2022-11-22 19:43:00   topology = 1
2022-11-22 19:43:00   ifconfig_local = '[UNDEF]'
2022-11-22 19:43:00   ifconfig_remote_netmask = '[UNDEF]'
2022-11-22 19:43:00   ifconfig_noexec = DISABLED
2022-11-22 19:43:00   ifconfig_nowarn = DISABLED
2022-11-22 19:43:00   ifconfig_ipv6_local = '[UNDEF]'
2022-11-22 19:43:00   ifconfig_ipv6_netbits = 0
2022-11-22 19:43:00   ifconfig_ipv6_remote = '[UNDEF]'
2022-11-22 19:43:00   shaper = 0
2022-11-22 19:43:00   mtu_test = 0
2022-11-22 19:43:00   mlock = DISABLED
2022-11-22 19:43:00   keepalive_ping = 0
2022-11-22 19:43:00   keepalive_timeout = 0
2022-11-22 19:43:00   inactivity_timeout = 0
2022-11-22 19:43:00   inactivity_minimum_bytes = 0
2022-11-22 19:43:00   ping_send_timeout = 0
2022-11-22 19:43:00   ping_rec_timeout = 0
2022-11-22 19:43:00   ping_rec_timeout_action = 0
2022-11-22 19:43:00   ping_timer_remote = DISABLED
2022-11-22 19:43:00   remap_sigusr1 = 0
2022-11-22 19:43:00   persist_tun = ENABLED
2022-11-22 19:43:00   persist_local_ip = DISABLED
2022-11-22 19:43:00   persist_remote_ip = DISABLED
2022-11-22 19:43:00   persist_key = ENABLED
2022-11-22 19:43:00   passtos = DISABLED
2022-11-22 19:43:00   resolve_retry_seconds = 1000000000
2022-11-22 19:43:00   resolve_in_advance = DISABLED
2022-11-22 19:43:00   username = '[UNDEF]'
2022-11-22 19:43:00   groupname = '[UNDEF]'
2022-11-22 19:43:00   chroot_dir = '[UNDEF]'
2022-11-22 19:43:00   cd_dir = '[UNDEF]'
2022-11-22 19:43:00   writepid = '[UNDEF]'
2022-11-22 19:43:00   up_script = '[UNDEF]'
2022-11-22 19:43:00   down_script = '[UNDEF]'
2022-11-22 19:43:00   down_pre = DISABLED
2022-11-22 19:43:00   up_restart = DISABLED
2022-11-22 19:43:00   up_delay = DISABLED
2022-11-22 19:43:00   daemon = DISABLED
2022-11-22 19:43:00   inetd = 0
2022-11-22 19:43:00   log = ENABLED
2022-11-22 19:43:00   suppress_timestamps = DISABLED
2022-11-22 19:43:00   machine_readable_output = DISABLED
2022-11-22 19:43:00   nice = 0
2022-11-22 19:43:00   verbosity = 6
2022-11-22 19:43:00   mute = 0
2022-11-22 19:43:00   status_file = '[UNDEF]'
2022-11-22 19:43:00   status_file_version = 1
2022-11-22 19:43:00   status_file_update_freq = 60
2022-11-22 19:43:00   occ = ENABLED
2022-11-22 19:43:00   rcvbuf = 0
2022-11-22 19:43:00   sndbuf = 0
2022-11-22 19:43:00   sockflags = 0
2022-11-22 19:43:00   fast_io = DISABLED
2022-11-22 19:43:00   comp.alg = 0
2022-11-22 19:43:00   comp.flags = 0
2022-11-22 19:43:00   route_script = '[UNDEF]'
2022-11-22 19:43:00   route_default_gateway = '[UNDEF]'
2022-11-22 19:43:00   route_default_metric = 0
2022-11-22 19:43:00   route_noexec = DISABLED
2022-11-22 19:43:00   route_delay = 5
2022-11-22 19:43:00   route_delay_window = 30
2022-11-22 19:43:00   route_delay_defined = ENABLED
2022-11-22 19:43:00   route_nopull = DISABLED
2022-11-22 19:43:00   route_gateway_via_dhcp = DISABLED
2022-11-22 19:43:00   allow_pull_fqdn = DISABLED
2022-11-22 19:43:00   Pull filters:
2022-11-22 19:43:00     ignore "route-method"
2022-11-22 19:43:00   management_addr = '127.0.0.1'
2022-11-22 19:43:00   management_port = '25343'
2022-11-22 19:43:00   management_user_pass = 'stdin'
2022-11-22 19:43:00   management_log_history_cache = 250
2022-11-22 19:43:00   management_echo_buffer_size = 100
2022-11-22 19:43:00   management_write_peer_info_file = '[UNDEF]'
2022-11-22 19:43:00   management_client_user = '[UNDEF]'
2022-11-22 19:43:00   management_client_group = '[UNDEF]'
2022-11-22 19:43:00   management_flags = 6
2022-11-22 19:43:00   shared_secret_file = '[UNDEF]'
2022-11-22 19:43:00   key_direction = not set
2022-11-22 19:43:00   ciphername = 'AES-256-CBC'
2022-11-22 19:43:00   ncp_enabled = ENABLED
2022-11-22 19:43:00   ncp_ciphers = 'AES-256-GCM:AES-128-GCM:AES-256-CBC'
2022-11-22 19:43:00   authname = 'SHA1'
2022-11-22 19:43:00   prng_hash = 'SHA1'
2022-11-22 19:43:00   prng_nonce_secret_len = 16
2022-11-22 19:43:00   keysize = 0
2022-11-22 19:43:00   engine = DISABLED
2022-11-22 19:43:00   replay = ENABLED
2022-11-22 19:43:00   mute_replay_warnings = DISABLED
2022-11-22 19:43:00   replay_window = 64
2022-11-22 19:43:00   replay_time = 15
2022-11-22 19:43:00   packet_id_file = '[UNDEF]'
2022-11-22 19:43:00   test_crypto = DISABLED
2022-11-22 19:43:00   tls_server = DISABLED
2022-11-22 19:43:00   tls_client = ENABLED
2022-11-22 19:43:00   ca_file = 'ca.crt'
2022-11-22 19:43:00   ca_path = '[UNDEF]'
2022-11-22 19:43:00   dh_file = '[UNDEF]'
2022-11-22 19:43:00   cert_file = 'andylaptop.crt'
2022-11-22 19:43:00   extra_certs_file = '[UNDEF]'
2022-11-22 19:43:00   priv_key_file = 'andylaptop.key'
2022-11-22 19:43:00   pkcs12_file = '[UNDEF]'
2022-11-22 19:43:00   cryptoapi_cert = '[UNDEF]'
2022-11-22 19:43:00   cipher_list = '[UNDEF]'
2022-11-22 19:43:00   cipher_list_tls13 = '[UNDEF]'
2022-11-22 19:43:00   tls_cert_profile = '[UNDEF]'
2022-11-22 19:43:00   tls_verify = '[UNDEF]'
2022-11-22 19:43:00   tls_export_cert = '[UNDEF]'
2022-11-22 19:43:00   verify_x509_type = 0
2022-11-22 19:43:00   verify_x509_name = '[UNDEF]'
2022-11-22 19:43:00   crl_file = '[UNDEF]'
2022-11-22 19:43:00   ns_cert_type = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 65535
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_ku[i] = 0
2022-11-22 19:43:00   remote_cert_eku = 'TLS Web Server Authentication'
2022-11-22 19:43:00   ssl_flags = 0
2022-11-22 19:43:00   tls_timeout = 2
2022-11-22 19:43:00   renegotiate_bytes = -1
2022-11-22 19:43:00   renegotiate_packets = 0
2022-11-22 19:43:00   renegotiate_seconds = 3600
2022-11-22 19:43:00   handshake_window = 60
2022-11-22 19:43:00   transition_window = 3600
2022-11-22 19:43:00   single_session = DISABLED
2022-11-22 19:43:00   push_peer_info = DISABLED
2022-11-22 19:43:00   tls_exit = DISABLED
2022-11-22 19:43:00   tls_crypt_v2_metadata = '[UNDEF]'
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_protected_authentication = DISABLED
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_private_mode = 00000000
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_cert_private = DISABLED
2022-11-22 19:43:00   pkcs11_pin_cache_period = -1
2022-11-22 19:43:00   pkcs11_id = '[UNDEF]'
2022-11-22 19:43:00   pkcs11_id_management = DISABLED
2022-11-22 19:43:00   server_network = 0.0.0.0
2022-11-22 19:43:00   server_netmask = 0.0.0.0
2022-11-22 19:43:00   server_network_ipv6 = ::
2022-11-22 19:43:00   server_netbits_ipv6 = 0
2022-11-22 19:43:00   server_bridge_ip = 0.0.0.0
2022-11-22 19:43:00   server_bridge_netmask = 0.0.0.0
2022-11-22 19:43:00   server_bridge_pool_start = 0.0.0.0
2022-11-22 19:43:00   server_bridge_pool_end = 0.0.0.0
2022-11-22 19:43:00   ifconfig_pool_defined = DISABLED
2022-11-22 19:43:00   ifconfig_pool_start = 0.0.0.0
2022-11-22 19:43:00   ifconfig_pool_end = 0.0.0.0
2022-11-22 19:43:00   ifconfig_pool_netmask = 0.0.0.0
2022-11-22 19:43:00   ifconfig_pool_persist_filename = '[UNDEF]'
2022-11-22 19:43:00   ifconfig_pool_persist_refresh_freq = 600
2022-11-22 19:43:00   ifconfig_ipv6_pool_defined = DISABLED
2022-11-22 19:43:00   ifconfig_ipv6_pool_base = ::
2022-11-22 19:43:00   ifconfig_ipv6_pool_netbits = 0
2022-11-22 19:43:00   n_bcast_buf = 256
2022-11-22 19:43:00   tcp_queue_limit = 64
2022-11-22 19:43:00   real_hash_size = 256
2022-11-22 19:43:00   virtual_hash_size = 256
2022-11-22 19:43:00   client_connect_script = '[UNDEF]'
2022-11-22 19:43:00   learn_address_script = '[UNDEF]'
2022-11-22 19:43:00   client_disconnect_script = '[UNDEF]'
2022-11-22 19:43:00   client_config_dir = '[UNDEF]'
2022-11-22 19:43:00   ccd_exclusive = DISABLED
2022-11-22 19:43:00   tmp_dir = 'C:\Users\andyj\AppData\Local\Temp\'
2022-11-22 19:43:00   push_ifconfig_defined = DISABLED
2022-11-22 19:43:00   push_ifconfig_local = 0.0.0.0
2022-11-22 19:43:00   push_ifconfig_remote_netmask = 0.0.0.0
2022-11-22 19:43:00   push_ifconfig_ipv6_defined = DISABLED
2022-11-22 19:43:00   push_ifconfig_ipv6_local = ::/0
2022-11-22 19:43:00   push_ifconfig_ipv6_remote = ::
2022-11-22 19:43:00   enable_c2c = DISABLED
2022-11-22 19:43:00   duplicate_cn = DISABLED
2022-11-22 19:43:00   cf_max = 0
2022-11-22 19:43:00   cf_per = 0
2022-11-22 19:43:00   max_clients = 1024
2022-11-22 19:43:00   max_routes_per_client = 256
2022-11-22 19:43:00   auth_user_pass_verify_script = '[UNDEF]'
2022-11-22 19:43:00   auth_user_pass_verify_script_via_file = DISABLED
2022-11-22 19:43:00   auth_token_generate = DISABLED
2022-11-22 19:43:00   auth_token_lifetime = 0
2022-11-22 19:43:00   auth_token_secret_file = '[UNDEF]'
2022-11-22 19:43:00   vlan_tagging = DISABLED
2022-11-22 19:43:00   vlan_accept = all
2022-11-22 19:43:00   vlan_pvid = 1
2022-11-22 19:43:00   client = ENABLED
2022-11-22 19:43:00   pull = ENABLED
2022-11-22 19:43:00   auth_user_pass_file = '[UNDEF]'
2022-11-22 19:43:00   show_net_up = DISABLED
2022-11-22 19:43:00   route_method = 3
2022-11-22 19:43:00   block_outside_dns = DISABLED
2022-11-22 19:43:00   ip_win32_defined = DISABLED
2022-11-22 19:43:00   ip_win32_type = 3
2022-11-22 19:43:00   dhcp_masq_offset = 0
2022-11-22 19:43:00   dhcp_lease_time = 31536000
2022-11-22 19:43:00   tap_sleep = 0
2022-11-22 19:43:00   dhcp_options = DISABLED
2022-11-22 19:43:00   dhcp_renew = DISABLED
2022-11-22 19:43:00   dhcp_pre_release = DISABLED
2022-11-22 19:43:00   domain = '[UNDEF]'
2022-11-22 19:43:00   netbios_scope = '[UNDEF]'
2022-11-22 19:43:00   netbios_node_type = 0
2022-11-22 19:43:00   disable_nbt = DISABLED
2022-11-22 19:43:00 OpenVPN 2.5.8 [git:release/2.5/0357ceb877687faa] Windows-MSVC [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Nov 11 2022
2022-11-22 19:43:00 Windows version 10.0 (Windows 10 or greater) 64bit
2022-11-22 19:43:00 library versions: OpenSSL 1.1.1s  1 Nov 2022, LZO 2.10
2022-11-22 19:43:00 MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:25343
2022-11-22 19:43:00 Need hold release from management interface, waiting...
2022-11-22 19:43:00 us=484000 MANAGEMENT: Client connected from [AF_INET]127.0.0.1:25343
2022-11-22 19:43:00 us=593000 MANAGEMENT: CMD 'state on'
2022-11-22 19:43:00 us=593000 MANAGEMENT: CMD 'log on all'
2022-11-22 19:43:00 us=875000 MANAGEMENT: CMD 'echo on all'
2022-11-22 19:43:00 us=890000 MANAGEMENT: CMD 'bytecount 5'
2022-11-22 19:43:00 us=890000 MANAGEMENT: CMD 'state'
2022-11-22 19:43:00 us=890000 MANAGEMENT: CMD 'hold off'
2022-11-22 19:43:00 us=890000 MANAGEMENT: CMD 'hold release'
2022-11-22 19:43:00 us=890000 Control Channel MTU parms [ L:1621 D:1212 EF:38 EB:0 ET:0 EL:3 ]
2022-11-22 19:43:00 us=890000 MANAGEMENT: >STATE:1669099380,RESOLVE,,,,,,
2022-11-22 19:43:01 us=203000 Data Channel MTU parms [ L:1621 D:1450 EF:121 EB:406 ET:0 EL:3 ]
2022-11-22 19:43:01 us=203000 Local Options String (VER=V4): 'V4,dev-type tun,link-mtu 1557,tun-mtu 1500,proto UDPv4,cipher AES-256-CBC,auth SHA1,keysize 256,key-method 2,tls-client'
2022-11-22 19:43:01 us=203000 Expected Remote Options String (VER=V4): 'V4,dev-type tun,link-mtu 1557,tun-mtu 1500,proto UDPv4,cipher AES-256-CBC,auth SHA1,keysize 256,key-method 2,tls-server'
2022-11-22 19:43:01 us=203000 TCP/UDP: Preserving recently used remote address: [AF_INET]118.93.59.89:1194
2022-11-22 19:43:01 us=203000 Socket Buffers: R=[65536->65536] S=[65536->65536]
2022-11-22 19:43:01 us=203000 UDP link local: (not bound)
2022-11-22 19:43:01 us=203000 UDP link remote: [AF_INET]118.93.59.89:1194
2022-11-22 19:43:01 us=203000 MANAGEMENT: >STATE:1669099381,WAIT,,,,,,
2022-11-22 19:43:01 us=203000 UDP WRITE [14] to [AF_INET]118.93.59.89:1194: P_CONTROL_HARD_RESET_CLIENT_V2 kid=0 [ ] pid=0 DATA len=0
2022-11-22 19:43:01 us=218000 UDP READ [0] from [AF_UNSPEC]: DATA UNDEF len=-1
2022-11-22 19:43:01 us=281000 UDP READ [26] from [AF_INET]118.93.59.89:1194: P_CONTROL_HARD_RESET_SERVER_V2 kid=0 [ 0 ] pid=0 DATA len=0
2022-11-22 19:43:01 us=281000 MANAGEMENT: >STATE:1669099381,AUTH,,,,,,
2022-11-22 19:43:01 us=281000 TLS: Initial packet from [AF_INET]118.93.59.89:1194, sid=75f38348 97a3586d
2022-11-22 19:43:01 us=281000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 0 ]
2022-11-22 19:43:01 us=281000 UDP WRITE [291] to [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=1 DATA len=277
2022-11-22 19:43:01 us=375000 UDP READ [1200] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ 1 ] pid=1 DATA len=1174
2022-11-22 19:43:01 us=375000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 1 ]
2022-11-22 19:43:01 us=375000 UDP READ [1188] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=2 DATA len=1174
2022-11-22 19:43:01 us=375000 VERIFY OK: depth=1, CN=Easy-RSA CA
2022-11-22 19:43:01 us=375000 VERIFY KU OK
2022-11-22 19:43:01 us=375000 Validating certificate extended key usage
2022-11-22 19:43:01 us=375000 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
2022-11-22 19:43:01 us=375000 VERIFY EKU OK
2022-11-22 19:43:01 us=375000 VERIFY OK: depth=0, CN=server
2022-11-22 19:43:01 us=375000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 2 ]
2022-11-22 19:43:01 us=375000 UDP READ [53] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=3 DATA len=39
2022-11-22 19:43:01 us=375000 UDP WRITE [1200] to [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ 3 ] pid=2 DATA len=1174
2022-11-22 19:43:01 us=375000 UDP WRITE [1188] to [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=3 DATA len=1174
2022-11-22 19:43:01 us=375000 UDP WRITE [260] to [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=4 DATA len=246
2022-11-22 19:43:01 us=437000 UDP READ [22] from [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 2 ]
2022-11-22 19:43:01 us=437000 UDP READ [184] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ 3 ] pid=4 DATA len=158
2022-11-22 19:43:01 us=437000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 4 ]
2022-11-22 19:43:01 us=437000 UDP READ [245] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ 4 ] pid=5 DATA len=219
2022-11-22 19:43:01 us=437000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 5 ]
2022-11-22 19:43:01 us=437000 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, peer certificate: 2048 bit RSA, signature: RSA-SHA256
2022-11-22 19:43:01 us=437000 [server] Peer Connection Initiated with [AF_INET]118.93.59.89:1194
2022-11-22 19:43:01 us=515000 UDP READ [172] from [AF_INET]118.93.59.89:1194: P_CONTROL_V1 kid=0 [ ] pid=6 DATA len=158
2022-11-22 19:43:01 us=515000 PUSH: Received control message: 'PUSH_REPLY,route-gateway 10.8.0.1,topology subnet,ping 10,ping-restart 120,ifconfig 10.8.0.4 255.255.255.0,peer-id 0,cipher AES-256-GCM'
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: timers and/or timeouts modified
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: --ifconfig/up options modified
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: route-related options modified
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: peer-id set
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: adjusting link_mtu to 1624
2022-11-22 19:43:01 us=515000 OPTIONS IMPORT: data channel crypto options modified
2022-11-22 19:43:01 us=515000 Data Channel: using negotiated cipher 'AES-256-GCM'
2022-11-22 19:43:01 us=515000 Data Channel MTU parms [ L:1552 D:1450 EF:52 EB:406 ET:0 EL:3 ]
2022-11-22 19:43:01 us=515000 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2022-11-22 19:43:01 us=515000 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key
2022-11-22 19:43:01 us=515000 interactive service msg_channel=736
2022-11-22 19:43:01 us=515000 open_tun
2022-11-22 19:43:01 us=515000 tap-windows6 device [OpenVPN] opened
2022-11-22 19:43:01 us=515000 TAP-Windows Driver Version 9.24 
2022-11-22 19:43:01 us=515000 TAP-Windows MTU=1500
2022-11-22 19:43:01 us=515000 Set TAP-Windows TUN subnet mode network/local/netmask = 10.8.0.0/10.8.0.4/255.255.255.0 [SUCCEEDED]
2022-11-22 19:43:01 us=515000 Notified TAP-Windows driver to set a DHCP IP/netmask of 10.8.0.4/255.255.255.0 on interface {F33DF24A-D757-4641-8DC1-FC733D27A02F} [DHCP-serv: 10.8.0.0, lease-time: 31536000]
2022-11-22 19:43:01 us=515000 Successful ARP Flush on interface [45] {F33DF24A-D757-4641-8DC1-FC733D27A02F}
2022-11-22 19:43:01 us=531000 do_ifconfig, ipv4=1, ipv6=0
2022-11-22 19:43:01 us=531000 MANAGEMENT: >STATE:1669099381,ASSIGN_IP,,10.8.0.4,,,,
2022-11-22 19:43:01 us=531000 IPv4 MTU set to 1500 on interface 45 using service
2022-11-22 19:43:01 us=531000 UDP WRITE [22] to [AF_INET]118.93.59.89:1194: P_ACK_V1 kid=0 [ 6 ]
2022-11-22 19:43:01 us=531000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:01 us=562000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=578000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=578000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=578000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=578000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:01 us=578000 UDP WRITE [111] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=110
2022-11-22 19:43:01 us=593000 UDP WRITE [149] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=148
2022-11-22 19:43:02 UDP WRITE [88] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=87
2022-11-22 19:43:02 UDP WRITE [72] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=71
2022-11-22 19:43:02 UDP WRITE [160] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=159
2022-11-22 19:43:02 us=500000 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:02 us=546000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:03 UDP WRITE [96] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=95
2022-11-22 19:43:03 UDP WRITE [120] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=119
2022-11-22 19:43:03 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:03 UDP WRITE [100] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=99
2022-11-22 19:43:03 us=15000 UDP WRITE [111] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=110
2022-11-22 19:43:03 us=15000 UDP WRITE [149] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=148
2022-11-22 19:43:03 us=500000 UDP WRITE [120] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=119
2022-11-22 19:43:04 us=546000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:06 us=15000 TEST ROUTES: 0/0 succeeded len=0 ret=1 a=0 u/d=up
2022-11-22 19:43:06 us=15000 Initialization Sequence Completed
2022-11-22 19:43:06 us=15000 MANAGEMENT: >STATE:1669099386,CONNECTED,SUCCESS,10.8.0.4,118.93.59.89,1194,,
2022-11-22 19:43:06 us=15000 UDP WRITE [80] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=79
2022-11-22 19:43:06 us=109000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:06 us=109000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:08 us=562000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:09 us=562000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:09 us=562000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:10 UDP WRITE [80] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=79
2022-11-22 19:43:10 us=578000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:10 us=578000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:11 us=812000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:12 us=593000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:12 us=593000 UDP WRITE [112] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=111
2022-11-22 19:43:16 us=562000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:20 us=921000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:26 us=687000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:31 us=156000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:32 us=578000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:43:35 us=656000 UDP WRITE [84] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:35 us=750000 UDP READ [84] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:36 us=671000 UDP WRITE [84] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:36 us=750000 UDP READ [84] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=83
2022-11-22 19:43:46 us=218000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:46 us=218000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:56 us=875000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:43:56 us=875000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:04 us=578000 UDP WRITE [167] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=166
2022-11-22 19:44:06 us=968000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:15 us=93000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:17 us=531000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:25 us=546000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:27 us=796000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:36 us=31000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:37 us=109000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:46 us=515000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:47 us=781000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:56 us=750000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:44:57 us=781000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:06 us=953000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:07 us=15000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:16 us=531000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:17 us=781000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:26 us=890000 UDP WRITE [40] to [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39
2022-11-22 19:45:26 us=968000 UDP READ [40] from [AF_INET]118.93.59.89:1194: P_DATA_V2 kid=0 DATA len=39

User avatar
openvpn_inc
OpenVPN Inc.
Posts: 1333
Joined: Tue Feb 16, 2021 10:41 am

Re: Cannot connect to clients on Server Subnet

Post by openvpn_inc » Tue Nov 22, 2022 11:32 am

Hello DaddyJ,

I notice two things. First off, it's giving this notice;
2022-11-22 19:41:36 us=406000 NOTE: your local LAN uses the extremely common subnet address 192.168.0.x or 192.168.1.x. Be aware that this might create routing conflicts if you connect to the VPN server from public locations such as internet cafes that use the same subnet.

It is true that these subnets are very common, and if the subnets are the same on both server and client side, then that's a collision. It's then best to change the server-side network to avoid collisions on the client side common networks.

The other thing I notice is that you say you added a rule on the server to push a route, but when I look on the client side at the options that are pushed, I do not see your subnet being pushed:
2022-11-22 19:43:01 us=515000 PUSH: Received control message: 'PUSH_REPLY,route-gateway 10.8.0.1,topology subnet,ping 10,ping-restart 120,ifconfig 10.8.0.4 255.255.255.0,peer-id 0,cipher AES-256-GCM'

So my guess is that either the route push directive was not implemented correctly or the server was not reloaded with this new information.

This line does look correct to me;
push "route 192.168.0.0 255.255.255.0"

But I am not seeing it taking effect on the client side. It should become visible in the "PUSH: Received control message" section.

Kind regards,
Johan
Image OpenVPN Inc.
Answers provided by OpenVPN Inc. staff members here are provided on a voluntary best-effort basis, and no rights can be claimed on the basis of answers posted in this public forum. If you wish to get official support from OpenVPN Inc. please use the official support ticket system: https://openvpn.net/support

DaddyJ
OpenVpn Newbie
Posts: 4
Joined: Tue Nov 22, 2022 6:12 am

Re: Cannot connect to clients on Server Subnet

Post by DaddyJ » Wed Nov 23, 2022 5:40 am

Thank you Johan - That is good to hear as I think the push command is not working either and it does match with the behavior I am seeing. I have connected multiple times and restarted the sever and client and the issue persistes.

I take your point with the lan subnet being common - However I have had openvpn working on the subnet before (on a raspberry PI) so suspect that may not be 100% the issue.

Any idea as to why a client may not be pulling down a push command?

User avatar
openvpn_inc
OpenVPN Inc.
Posts: 1333
Joined: Tue Feb 16, 2021 10:41 am

Re: Cannot connect to clients on Server Subnet

Post by openvpn_inc » Wed Nov 23, 2022 10:37 am

Hello DaddyJ,

Let's put it this way. If I take this line and put it into my OpenVPN server configuration, it works:
push "route 192.168.0.0 255.255.255.0"

That it doesn't for you means that either you are not connecting to this server that runs this config, or the server has not been restarted to use this config, or whatever runs this server is just straight-up ignoring what you configure, or something along those lines.

More than that I do not know, sorry.

Kind regards,
Johan
Image OpenVPN Inc.
Answers provided by OpenVPN Inc. staff members here are provided on a voluntary best-effort basis, and no rights can be claimed on the basis of answers posted in this public forum. If you wish to get official support from OpenVPN Inc. please use the official support ticket system: https://openvpn.net/support

User avatar
Pippin
Forum Team
Posts: 1201
Joined: Wed Jul 01, 2015 8:03 am
Location: irc://irc.libera.chat:6697/openvpn

Re: Cannot connect to clients on Server Subnet

Post by Pippin » Wed Nov 23, 2022 4:32 pm

Hi,

In addition to what Johan already mentioned:

Server log:

Code: Select all

--pull-filter ignored for --mode server
The server config you posted does not contain the --pull-filter directive.
--pull-filter only applies to client configurations.

If you ask me, you have mixed up configuration files...
.
I gloomily came to the ironic conclusion that if you take a highly intelligent person and give them the best possible, elite education, then you will most likely wind up with an academic who is completely impervious to reality.
Halton Arp

DaddyJ
OpenVpn Newbie
Posts: 4
Joined: Tue Nov 22, 2022 6:12 am

Re: Cannot connect to clients on Server Subnet

Post by DaddyJ » Thu Nov 24, 2022 4:47 am

Well highly possible I have mixed up config files with the many attempts to fix! However with my testing I specifically launch the vpn server by right clicking on the config file itself and selecting "run from here" so would assume that is the config file that runs... its a real mystery.

Anyway I have given up lol. I added a manual route for both clients as a workaround in their local opvn file and all seems okay. It would make sense the 192.168.x.x subnet is somehow causing this problem (even though the network I'm on connecting from is 172.x.x.x) but it would be a big task to re-ip my home network so will leave for now.

Thanks for your help - very much appreciated.

Post Reply