Xenshine wrote:
It says I need to put the 'gateway, subnet mask, and the start and end IP’s to assign the clients, and the push route, which pushes specific routes to all clients.'
Whether or not you need to push anything to clients is dependent on the sort of configuration you want to set up. If you just need your clients to be able to reach your Linode (but not route through it), then much of that is unnecessary. The page you reference is setting up a full bridged environment (essentially making it like your clients are on the same network as the Linode) whereas a simple routed setup is easier if they just need secure access to the Linode itself and/or other concurrent VPN connections. Bridging also needs more work to set up the bridging device on Linux that connects the OpenVPN interface with the main LAN interface.
(Personally, I also wouldn't use port 443 which is the HTTPS port).
Quote:
Well I do a netstat -r and it says the default gateway is gateway140.lino. Is that right?? Obviously I know what the subnet address is, but then I have no idea what to put for the start and end ips to assign to clients. No clue about what to put for the push router.
The network that is used for the VPN connection itself is distinct (and will have its own tun* or tap* adapter on your Linode) from the Linode's ethernet. So you can pick any non-conflicting address range to use for it. Typically this will be from the "private" reserved address space. Most OpenVPN samples will use the 10.* space, which among other things is less likely to conflict with the private address space used by home routers.
The openvpn package on Debian would have included several sample configurations in /usr/share/doc/openvpn/examples/sample-config-files. The sample server.conf.gz file is a pretty straight forward routed server, using the 10.8.0.* address space for clients.
You might try starting with that as a simpler configuration, and once that's stable progress to bridging if you need it.
The openvpn site also includes some good documentation (
http://www.openvpn.net/index.php/open-s ... ation.html) including entries that help describe the difference in behavior and configuration between routed and bridged configurations.
-- David