Page 1 of 1

Multiple connection on the server

Posted: Sun Aug 15, 2010 9:12 pm
by andrea
Hello everyone, I just installed OpenVPN on my server but I got stuck (although I read the MAN), I can't make multiple connections to my server, I tried to put the "max-clients 10" but nothing, then I knew I had to generate a key for each client trying to connect (but then how do I tell my server.conf read a directory?). Thanks also, and i post the configuration of my server and clients....... Thnkx

P.S. my connection is over ssh tunneling with port forwarding,
The error is that makes me connect a client at a time, one server at a time

::::::::Server Configuration::::::::::::
proto tcp-server
dev tap
lport 8443
ifconfig 10.0.0.1 255.255.255.0
secret /etc/openvpn/chiavewrt1.key
secret /etc/openvpn/chiavewrt.key
max-clients 10
ping 15


::::::::::Clients Config:::::::::::::
remote localhost
proto tcp-client
dev tap
rport 8443
ifconfig 10.0.0.3 255.255.255.0
secret C:\\chiavewrt.key
persist-tun
ping 15
verb 3

Re: Multiple connection on the server

Posted: Tue Aug 17, 2010 12:13 am
by krzee
your configs are for point-to-point setups.
Try something more like this:
viewtopic.php?f=4&t=3

Re: Multiple connection on the server

Posted: Sat Aug 21, 2010 7:55 am
by andrea
Thanks, :D