Site to site problem

This forum is for all inquiries relating to the installation of OpenVPN from source and with binaries.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please visit (and READ) the OpenVPN HowTo http://openvpn.net/howto prior to asking any questions in here!
Post Reply
nabucho
OpenVpn Newbie
Posts: 2
Joined: Thu Mar 29, 2012 12:51 pm

Site to site problem

Post by nabucho » Thu Mar 29, 2012 2:19 pm

Hello,

I have a little problem on my configuration...

My server is on site A. I have the client on site B.

On the LAN A, i have 3 other servers.
Each computer from the LAN B could access on the 3 servers on LAN A.

When I tried to access, from one of the 3 server on site A, to a server on site B the communication is going well on tun0 but the client does not seem to receive it !

Any idea ?

Server site A :
# Server configuration
port 1194
proto tcp
dev tun
ca privnet/ca.crt
cert privnet/buck.crt
key privnet/buck.key
dh privnet/dh2048.pem

# Clients
client-to-client
server 192.168.11.0 255.255.255.0
push "route 192.168.10.0 255.255.255.0"
ifconfig-pool-persist ipp.txt
keepalive 10 120

# Server specific
comp-lzo
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
verb 3

Client site B:
cat /etc/openvpn/openvpn.conf
# Client conf
client
dev tun
proto tcp
remote 109.69.194.217 1194
resolv-retry infinite
nobind
user nobody
group nobody
persist-key
persist-tun
ca ca.crt
cert srvvpn.crt
key srvvpn.key
#tls-auth ta.key 1
#cipher AES-128-CBC
comp-lzo
mute 20

User avatar
Mimiko
Forum Team
Posts: 1564
Joined: Wed Sep 22, 2010 3:18 am

Re: Site to site problem

Post by Mimiko » Tue May 15, 2012 5:33 am

On the server config you didn't used client configuration directory to indicate to the OpenVPN, where to route packets for LAN B with "iroute".

Post Reply