I am pushing a whole load of routes for all of my servers from the OpenVPN server to the clients as I want to manage them centrally.
The problem is, I hit a limit as it said the buffer (1024) had been exceeded so what I need to do is cut down the number of routes.
I am however having to have 3 routes for each range, because we are using all 8 ip's in a range, for example:
Code: Select all
push "route 123.123.123.200 255.255.255.248"
push "route 123.123.123.200 255.255.255.255"
push "route 123.123.123.207 255.255.255.255"
For the range that includes the VPN server, i need to have 4 routes:
Code: Select all
push "route 123.123.123.177 255.255.255.255 net_gateway"
push "route 123.123.123.176 255.255.255.248"
push "route 123.123.123.176 255.255.255.255"
push "route 123.123.123.183 255.255.255.255"
Also, is it possible the push buffer can be increased without re-compiling? - i'm using the Debian packages and would like to continue to do so.
Thanks,
Ian