LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-30-2005, 08:09 PM   #1
linuxpyro
Member
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 134

Rep: Reputation: 16
OpenVPN config problem


Hello, I am trying to setup OpenVPN to connect two networks together. Here is the situation:

Server net
192.168.1.0/24
server IP 192.168.1.10

Client net
192.168.2.0/24
client IP 192.168.2.1

VPN net
10.8.0.0/24

I have the tunnel devices set up on both machines, as well as IP forwarding. The server is a Gentoo box, and runs as a Samba server on its network. The client box is running Fedora Core 2, and is a gateway for my other network, and does NAT and firewalling, etc. Port 1194 is forwarded to the server.

My problem is that I can't even ping the server from the client machine, when using the server's VPN IP (the one of the server's tun interface). When I try, I get this error:

ping: sendmsg: Operation not permitted

This is directly from the terminal of the client machine; I plan to worry about forwarding the packets between the networks after I can get the client and server to talk to each other properly. Here is the routing table I get on the client:

Code:
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.8.0.5        *               255.255.255.255 UH    0      0        0 tun0
10.8.0.1        10.8.0.5        255.255.255.255 UGH   0      0        0 tun0
129.21.109.0    *               255.255.255.128 U     0      0        0 eth0
10.0.0.0        10.8.0.5        255.255.255.0   UG    0      0        0 tun0
192.168.2.0     *               255.255.255.0   U     0      0        0 eth1
10.8.0.0        10.8.0.5        255.255.255.0   UG    0      0        0 tun0
169.254.0.0     *               255.255.0.0     U     0      0        0 eth1
127.0.0.0       *               255.0.0.0       U     0      0        0 lo
default         rit-dorm1-gw-04 0.0.0.0         UG    0      0        0 eth0
Here is the routing table on the server:

Code:
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.8.0.2        *               255.255.255.255 UH    0      0        0 tun0
10.8.0.0        10.8.0.2        255.255.255.0   UG    0      0        0 tun0
192.168.1.0     *               255.255.255.0   U     0      0        0 eth0
loopback        *               255.0.0.0       U     0      0        0 lo
default         router.whatsmyk 0.0.0.0         UG    0      0        0 eth0
Here is the config file for the server:

Code:
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "route 10.8.0.0 255.255.255.0"
push "route 10.0.0.0 255.255.255.0"
keepalive 10 120
comp-lzo
user openvpn
groupe openvpn
persist-key
persist-tun
status openvpn-status.log
verb 3
Here is the config for the client:

Code:
client
dev tun
proto udp
remote my.vpn.server 1194
resolv-retry infinite
nobind
user nobody
group nobody
persist-key
persist-tunca ca.crt
cert badger.crt
key badger.key
ns-cert-type server
comp-lzo
verb 3
ifconfig 10.0.0.2 10.0.0.1
Can anybody who's gotten this to work post their config? Thanks for any help.
 
Old 10-02-2005, 09:23 AM   #2
avasaralak
LQ Newbie
 
Registered: Nov 2003
Distribution: SuSE 8.2
Posts: 2

Rep: Reputation: 0
OpenVPN

I have an OpenVPN configuration running between a SuSE 9.3 client and a SuSE 9.2 server over WLAN. I pretty much followed the instructions on the OpenVPN website. However, I should mention that I had firewall issues and I had to initially disable the firewalls on both the client and the server to get OpenVPN working.
 
Old 10-02-2005, 07:50 PM   #3
linuxpyro
Member
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 134

Original Poster
Rep: Reputation: 16
OK, when I disabled the IPtables firewall running on the client, I was able to ping across. What rules did you have to put into IPtables in order to get it to work properly?
 
Old 10-04-2005, 12:34 PM   #4
linuxpyro
Member
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 134

Original Poster
Rep: Reputation: 16
OK, per the OpenVPN howto, I added the following to my firewall rules:

Code:
iptables -A INPUT -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -j ACCEPT
However, this has not helped. Can someone who has gotten this to work post their firewall config?
 
Old 10-06-2005, 03:47 PM   #5
stoffell
Member
 
Registered: Apr 2003
Location: belgium
Distribution: debian
Posts: 72

Rep: Reputation: 15
Quote:
Originally posted by linuxpyro
However, this has not helped. Can someone who has gotten this to work post their firewall config?
First of all, try using tcp as protocol? If did help me out sometimes..
 
Old 10-06-2005, 06:01 PM   #6
linuxpyro
Member
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 134

Original Poster
Rep: Reputation: 16
I tried that, but I still get the same error when I try to ping.
 
Old 10-07-2005, 12:50 AM   #7
stoffell
Member
 
Registered: Apr 2003
Location: belgium
Distribution: debian
Posts: 72

Rep: Reputation: 15
Quote:
Originally posted by linuxpyro
I tried that, but I still get the same error when I try to ping.
In a previous post you mentioned that it works without firewall rules..
Well, I suggest trying shorewall (www.shorewall.net), it's an iptables script with great flexibility and it has support for OpenVPN, so it should be much easier to allow the vpn traffic.

Good luck
 
Old 10-07-2005, 07:12 PM   #8
linuxpyro
Member
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 134

Original Poster
Rep: Reputation: 16
OK, I got it to work. I searched around abit and found this thread. I added the IPtables rules the guy uesd there, and now it seems to work fine. Thanks for the input!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with OpenVPN eantoranz Linux - Networking 8 10-10-2005 04:49 PM
openvpn and shorewall problem from outside network nbccbn Linux - Networking 1 07-12-2005 01:24 AM
OpenVPN Routing problem groetschel Linux - Networking 4 04-28-2004 04:07 AM
OpenVPN dunmarie Linux - Software 1 10-13-2003 12:10 PM
possible samba config problem or network config issue? rruffin Linux - Networking 3 06-03-2003 04:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 12:04 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration