Fedora Linux Support Community & Resources Center
  #1  
Old 18th June 2012, 03:35 AM
RhombiKiet Offline
Registered User
 
Join Date: Jun 2012
Location: MIRKA
Posts: 2
linuxfirefox
Free VPNs?

I've done extensive research, and I can't find a single free VPN compatible or installable with Fedora 17. HALP PLOX??

I'd prefer if it was simply downloadable. Also, I have a lynksis router I'm willing to change any setting on.
Reply With Quote
  #2  
Old 18th June 2012, 04:36 AM
flyingfsck Offline
Registered User
 
Join Date: Aug 2010
Location: Al Ain, UAE
Posts: 1,046
linuxfirefox
Re: Free VPNs?

A few years ago, I did see some SSH socks proxies, so maybe you should search again.
Reply With Quote
  #3  
Old 18th June 2012, 05:21 AM
stevea's Avatar
stevea Offline
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,298
linuxfirefox
Re: Free VPNs?

Quote:
I've done extensive research, and I can't find a single free VPN compatible or installable with Fedora 17.
Really ? What about openvpn, vpnc, ipsec ?
Another to explore is tinc


My *feeling* is that vpnc is a little buggy and no longer well supported.
__________________
None are more hopelessly enslaved than those who falsely believe they are free.
Johann Wolfgang von Goethe
Reply With Quote
  #4  
Old 18th June 2012, 06:18 AM
hmmsjan Offline
Registered User
 
Join Date: Jun 2009
Location: Alkmaar The Netherlands
Posts: 193
linuxchrome
Re: Free VPNs?

Dear RhombiKiet

An excellent VPN is OpenVPN with clients for all major platforms. There are plugins for NetworkManager
to connect to an OpenVPN server, in Windows there is an openvpn-gui.

You can make an additional subnet, or use the "bridge" mode to extend the local network IP range to remote.
The number of possibilities make the setup somewhat complicated, but there should be tutorials on the net
and example config files. Identification is either name/password or SSL certificates.
Due to the fact that only a single TCP or UDP port is needed, firewall setup is simple.


For a quick connection between Linux systems, one could consider ssh, see the "tunnel" options.

Good luck
__________________
H.Janssen
Alkmaar
The Netherlands
Reply With Quote
  #5  
Old 18th June 2012, 07:32 AM
stevea's Avatar
stevea Offline
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,298
linuxfirefox
Re: Free VPNs?

Quote:
Originally Posted by hmmsjan View Post
Dear RhombiKiet

An excellent VPN is OpenVPN with clients for all major platforms. There are plugins for NetworkManager
to connect to an OpenVPN server, in Windows there is an openvpn-gui.

You can make an additional subnet, or use the "bridge" mode to extend the local network IP range to remote.
The number of possibilities make the setup somewhat complicated, but there should be tutorials on the net
and example config files. Identification is either name/password or SSL certificates.
Due to the fact that only a single TCP or UDP port is needed, firewall setup is simple.


For a quick connection between Linux systems, one could consider ssh, see the "tunnel" options.

Good luck
Well I generally agree that openvpn is filled with goodness,
except that ipsec is part of the stack and aside from having some raw/rough tools for support IS the future.
http://docs.redhat.com/docs/en-US/Re...orks_VPNs.html

Yes ssh tunnel feature works as advertised, but it does nothing but set up the tunnel - no proxy forwarding or dhcp setup or routing tables. Good tool but a bag-of-bolts for making a practical tunnel.
__________________
None are more hopelessly enslaved than those who falsely believe they are free.
Johann Wolfgang von Goethe

Last edited by stevea; 18th June 2012 at 07:45 AM.
Reply With Quote
  #6  
Old 18th June 2012, 07:52 AM
flyingfsck Offline
Registered User
 
Join Date: Aug 2010
Location: Al Ain, UAE
Posts: 1,046
linuxfirefox
Re: Free VPNs?

http://www.google.com/search?hl=en&q...sh+socks+proxy

BTW, a SSH socks proxy is a one liner, Firefox and Chrome can both forward DNS over socks and why do you want to do DHCP over a tunnel?
Reply With Quote
  #7  
Old 18th June 2012, 12:12 PM
beaker_'s Avatar
beaker_ Offline
Registered User
 
Join Date: Nov 2008
Location: Canada
Posts: 2,048
linuxfirefox
Re: Free VPNs?

Quote:
Originally Posted by stevea View Post
Well I generally agree that openvpn is filled with goodness,
except that ipsec is part of the stack and aside from having some raw/rough tools for support IS the future.
http://docs.redhat.com/docs/en-US/Re...orks_VPNs.html

Yes ssh tunnel feature works as advertised, but it does nothing but set up the tunnel - no proxy forwarding or dhcp setup or routing tables. Good tool but a bag-of-bolts for making a practical tunnel.
Hmmm..., does more than tunnel here. Port forwarding for ex.,
Reply With Quote
  #8  
Old 19th June 2012, 04:03 PM
stevea's Avatar
stevea Offline
Registered User
 
Join Date: Apr 2006
Location: Ohio, USA
Posts: 8,298
linuxfirefox
Re: Free VPNs?

Quote:
Originally Posted by beaker_ View Post
Hmmm..., does more than tunnel here. Port forwarding for ex.,
You misunderstand the context; the topic is VPNs. Port forwarding is NOT not a tunnel and not a VPN, - so your comment is off topic. The entire idea of a VPN is to 'join' another network via a secure channel, so you appear to be directly connected to the remote network. This requires creation of a new interface (like a 'tun' virtual interface) to permit routing. Ssh port forwarding does not do that and is irrelevant to this thread.


The ssh -w /tunnel options does create a tun device with a secure channel connection to the remote system. That's a big piece of the puzzle but not a complete solution.

ssh does have a proxy forwarding feature that can help - but has to be configured.
IIRC ssh tunnel does not create any routing tables for the tun.
it does not manage dhcp or dns configuration for the tun.
it does not have any cleanup for these things on exit.
You can surround ssh with scripts and get the desired effect - but ssh tunneling is not a VPN per se, it's just one component of a VPN..
These limitations probably explain why ssh tunnelling is rarely used or discussed - there are better solutions for VPN.



This is very unlike openvpn where the server pushes farside network arrangement (various internal lans, routes, masks) to the client, and the client creates an interface and uses this info to set local route tables. openvpn can also manage dhclient on the tun on the client. It knows how to tear this apart at disconnect.
__________________
None are more hopelessly enslaved than those who falsely believe they are free.
Johann Wolfgang von Goethe
Reply With Quote
  #9  
Old 20th June 2012, 11:21 AM
beaker_'s Avatar
beaker_ Offline
Registered User
 
Join Date: Nov 2008
Location: Canada
Posts: 2,048
linuxfirefox
Re: Free VPNs?

Quote:
You misunderstand the context; the topic is VPNs. Port forwarding is NOT not a tunnel and not a VPN, - so your comment is off topic. The entire idea of a VPN is to 'join' another network via a secure channel, so you appear to be directly connected to the remote network. This requires creation of a new interface (like a 'tun' virtual interface) to permit routing. Ssh port forwarding does not do that and is irrelevant to this thread.
Ummm... no I don't see it.

Quote:
The ssh -w /tunnel options does create a tun device with a secure channel connection to the remote system. That's a big piece of the puzzle but not a complete solution.

ssh does have a proxy forwarding feature that can help - but has to be configured.
IIRC ssh tunnel does not create any routing tables for the tun.
it does not manage dhcp or dns configuration for the tun.
it does not have any cleanup for these things on exit.
You can surround ssh with scripts and get the desired effect - but ssh tunneling is not a VPN per se, it's just one component of a VPN..
These limitations probably explain why ssh tunnelling is rarely used or discussed - there are better solutions for VPN.



This is very unlike openvpn where the server pushes farside network arrangement (various internal lans, routes, masks) to the client, and the client creates an interface and uses this info to set local route tables. openvpn can also manage dhclient on the tun on the client. It knows how to tear this apart at disconnect.
O come on. BS may baffle the OP's brains but we both know a VPN is about authentication & trust and not the amount of services you can push. If you want to guide him through setting up a hardened openvpn server & client, then, by all means, fill your boats. But I'm thinking like flyingfsck: here's a one-liner, so how hard did you check?
Reply With Quote
Reply

Tags
free, vpns

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Free MAC Hedgedog Mac Chat 5 24th August 2010 04:06 AM
RPM Fusion Free & Non-Free Repositories for Fedora 10 Available- Thorsten Leemhuis bob News 0 25th November 2008 04:57 PM
Help removing free space to create Raw free space nightmare55 Using Fedora 3 14th February 2007 06:03 AM
Free software not so free, Linux future???? yr2alex Linux Chat 16 30th October 2005 08:15 PM


Current GMT-time: 04:13 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat