- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- ipsec tunnel more secure than ssh?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-02-2010 11:35 AM
тАО01-02-2010 11:35 AM
I'd like to rsync some data between 2 linux machines over the Internet.
Is ipsec vpn tunnel more secure than ssh with a quite long and complicated password?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-02-2010 02:16 PM
тАО01-02-2010 02:16 PM
Solutioncheck this link :
http://www.schumi.ch/partner/SSHvsVPN.htm
- ok to your solution, for rsync only between two server somewhere on the internet you could use, only ssh, but if this servers are inside the DMZ/intranet, them you could use VPN/IPSEC to create connection between corporate lan and internet placed server, and them if you have access use rsynv over SSH.
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-05-2010 07:43 PM
тАО01-05-2010 07:43 PM
Re: ipsec tunnel more secure than ssh?
the "command" and "from" settings in the file authorized_keys, which will allow the key-based access only from the "correct" server and will only allow him to run rsync.
A VPN will actually allow more access to the "authorized client" than a firewall restricted ssh will do, but opening up ssh just for rsync might be something to reconsider multiple times. If you don't have to, then don't make ssh available.
The actual transmission should be as secure with ssh than via a vpn, as they share most algorithms used for the encryption.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-05-2010 09:26 PM
тАО01-05-2010 09:26 PM
Re: ipsec tunnel more secure than ssh?
Thx, but can u pls give some more details how this should work?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-06-2010 08:06 AM
тАО01-06-2010 08:06 AM
Re: ipsec tunnel more secure than ssh?
These are two totally different, yet compatible technologies.
You could connect via an IPSEC/VPN and then rsync.
This would provide two layers of protection.
There is some configuration work to do, but it can be done.
Frankly however, rsync -e ssh and password free ssh authentication is good enough for most purposes. Only the NSA or people having very powerful computers have a chance to crack the encryption and that would take days or weeks of effort.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-06-2010 09:06 AM
тАО01-06-2010 09:06 AM
Re: ipsec tunnel more secure than ssh?
These are documented in the sshd man page, in the chapter titled "AUTHORIZED_KEYS FILE FORMAT". There's even an example authorized_keys file, demonstrating various settings.
MK