|
|
Hello to all, I am trying tostablished a OpenVPN in this cenario: Site1 Network -- Iptables/Squid/OpenVPN gateway -- Cisco/nat -- VPN gateway site 2 ---Site2 Network I am able to ping from both gateways to other one without problems but in a internal machine on site 1 I can not able to ping other machine in site 2 network. I have in the CISCO router on site2 an rule for ip nat inside redirecting the site2 ip extenal for vpn to site2 vpn gateway , rule openning port udp 5000 for this machine too. And a route for the site 1 network through site2 vpn gateway ip. I don´t known what to do now ... This is my config files This is the configuration files ====================================== #Site1.conf # Use interface TUN dev tun # 10.0.0.1 Ip for Site 1 # 10.0.0.2 Ip for Site 2 ifconfig 10.0.0.1 10.0.0.2 # Go to directory OpenVPN cd /etc/openvpn #Use static key secret chave #OpenVPN will use 5000/UDP port 5000 #Usuer for daemon user nobody #Group for daemon group nogroup #Use LZO Compact library comp-lzo #Keep alive the connectio using ping ping 15 #Log verb 3 #Site2.conf # Use interface TUN dev tun # 10.0.0.1 Ip for Site 1 # 10.0.0.2 Ip for Site 2 ifconfig 10.0.0.2 10.0.0.1 #Call the ip for Site 1 remote External_Ip_for_Site_1 # Go to directory OpenVPN cd /etc/openvpn #Use static key secret chave #OpenVPN will use 5000/UDP port 5000 #Usuer for daemon user nobody #Group for daemon group nogroup #Use LZO Compact library comp-lzo #Keep alive the connectio using ping ping 15 #Log verb 3 This is my startup files #starting the Tunel in site 1 modprobe tun echo 1 > /proc/sys/net/ipv4/ip_forward route add -net 172.19.128.0/23 gw 10.0.0.2 openvpn --config /etc/openvpn/site1.conf --daemon #starting the Tunel in site 2 modprobe tun echo 1 > /proc/sys/net/ipv4/ip_forward route add -net 192.168.1.0/24 gw 10.0.0.1 openvpn --config /etc/openvpn/site2.conf --daemon ========================================= ____________________________________________ Openvpn-users mailing list Openvpn-users@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/openvpn-users Warning: require_once(../../../archive_common.php) [function.require-once]: failed to open stream: No such file or directory in /home/openvpn/domains/openvpn.net/public_html/archive/openvpn-users/2005-09/msg00020.html on line 259 Fatal error: require_once() [function.require]: Failed opening required '../../../archive_common.php' (include_path='/usr/local/lib/php') in /home/openvpn/domains/openvpn.net/public_html/archive/openvpn-users/2005-09/msg00020.html on line 259 |