I am configuring my OpenVPN server and my idea was to make different subnets for different needs: My main subnet for unprivileged DHCP users is 10.110.131.0/24 On server it is configured that way: server 10.110.131.0 255.255.255.0
Then I made some additional subnets for my privileged static IP users like: 10.110.128.0/24 10.110.129.0/24 10.110.130.0/24
I added routing to the server.conf: route 10.110.128.0 255.255.255.0 route 10.110.129.0 255.255.255.0 route 10.110.130.0 255.255.255.0
But the actual problem is I don't know how to configure Windows users. For example, when I use a mobile phone it connects without any problems and the only thing I provide in the ccd config is: ifconfig-push 10.110.129.10 255.255.255.0
But when using Windows laptop with the same ccd config it starts to give errors, like: Route: Waiting for TUN/TAP interface to come up... Warning: route gateway is not reachable on any active network adapters: 10.110.131.1
So it can't find VPN gateway which is 10.110.131.1
Then I change ccd config to: ifconfig-push 10.110.128.10 255.255.252.0 Which fixes my problem, but I don't like this approach and would like to provide my Windows clients my gateway in the config, but I can't find the way to do this, I tried route and iroute but none of them work
So any ideas?