-
Hi,
I have a windows laptop at my soho connected to the internet trough a
wireless router and cable modem.
I need to connect to the office server trough OpenVPN.
The OpenVPN connection is working but after I get a strange error.
A small test website is available to download but a normal (larger)
website waits infinity time to download.
So I cannot work like I want with OpenVPN...
2009-11-12 23:22:49 UTC by gvamosi
-
The problem here seems to be the call to link_socket_actual_match() in
tls_pre_decrypt() which prevents packets from the "wrong remotes" from
being seen by any later code, thus preventing --float from working with
TLS mode in general.
2009-11-09 02:13:05 UTC by nobody
-
your iptables rules does not make much sense: it reads as
the openvpn VPN has addresses in the range 10.232.172.0/24
all traffic with source address 10.232.172.0/24 going OUT over the tun0 interface needs to be masqueraded
but the tun0 interface already is on this subnet !
the first rule would make more sense:
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o tun0 -j...
2009-11-06 21:53:47 UTC by janjust
-
Hello I was wonder if anyone could help me with a problem. Here is the scenario...I am running open vpn mod on a smoothwall server... and clients can connect to it just fine, but here is the problem.
LAN ip 192.168.0.XXX
OPEN VPN assigned IP 10.232.172.XXX
When physically on the 192.168.0.XXX network I sometimes need to Remote into a clients server through an IPSEC connection.. The...
2009-11-06 18:06:00 UTC by avaughn7
-
When enter those settings i cant connect my openvpn connection any more.. ?
Fri Nov 06 16:06:16 2009 OpenVPN 2.0.9 Win32-MinGW [SSL] [LZO] built on Oct 1 2006
Fri Nov 06 16:06:16 2009 IMPORTANT: OpenVPN's default port number is now 1194, based on an official port number assignment by IANA. OpenVPN 2.0-beta16 and earlier used 5000 as the default port.
Fri Nov 06 16:06:16 2009...
2009-11-06 15:10:13 UTC by elsnorro
-
destination: 10.8.0.0
netmask: 255.255.255.0
gw: 192.168.3.100.
2009-11-06 14:36:46 UTC by janjust
-
Ok i have a zyxel NBG460N router.
I know about port forwarding, but should i create a static route in my router?
in the static route menu i can set the following options:
destination: (should this be the NAS ip adress?)
subnetmask: (suppose this should be 255.255.255.0)
Gateway adress: (should this be the ip adress of my router?)
Thanks for helping :)
2009-11-06 13:57:01 UTC by elsnorro
-
you don't need to create a route to your home router, but a route FROM your home router : this depends on your home router how you do this.
an alternative is to use iptables on the NAS box; try something like
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
.
2009-11-06 09:06:30 UTC by janjust
-
My routing is on on the NAS box!
cat /proc/sys/net/ipv4/ipforward
gives 1
(cant edit my messages??)
2009-11-05 17:54:56 UTC by elsnorro
-
This is my server config:
# OpenVPN server configuration QNAP NAS
# basic settings
port 1194
proto udp
dev tun
#
# detect mtu if the connection is slow.
; mtu-test
#
# define mtu, if necessary
; tun-mtu xyz
#
# define the ip-addresses of the underlying tunnel
server 10.8.0.0 255.255.255.0
#
# Route
push "route 192.168.4.0 255.255.255.0" #
2009-11-05 17:46:47 UTC by elsnorro