client-to-client help
Posted: Mon Sep 20, 2010 9:04 pm
Trying to setup a local vpn so others can connect see eachother and comunicate back and forth
they won't communicate with each other but i can get it to communicate with the server
my server.conf
my client.conf
If anyone could help it would be appreciated
my goal is able to have clients to be able to see eachother and be able to share content over port 80
they won't communicate with each other but i can get it to communicate with the server
my server.conf
Code: Select all
mode server
port 1194
proto tcp
dev tun
ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/server.crt
key /etc/openvpn/keys/server.key
dh /etc/openvpn/keys/dh1024.pem
server 10.9.0.0 255.255.255.0
;push "redirect-gateway eth1"
push "dhcp-option DNS 10.0.80.11"
push "dhcp-option DNS 10.0.80.12"
client-to-client
ifconfig-pool-persist ipp.txt
route 10.9.0.0 255.255.255.0
push "route 10.9.0.0 255.255.255.0"
keepalive 10 120
comp-lzo
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
verb 3
duplicate-cn
Code: Select all
client
dev tun
proto tcp
remote 255.255.255.255 1194
resolv-retry infinite
persist-key
persist-tun
ca test.crt
cert test.crt
key test.key
ns-cert-type server
comp-lzo
verb 3
If anyone could help it would be appreciated
my goal is able to have clients to be able to see eachother and be able to share content over port 80