- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: through ssh how u connect to another server
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
Forums
Discussions
Discussions
Discussions
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
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
12-31-2007 02:28 AM
12-31-2007 02:28 AM
through ssh how u connect to another server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2007 03:10 AM
12-31-2007 03:10 AM
Re: through ssh how u connect to another server
for more - "man ssh"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2007 11:08 AM
12-31-2007 11:08 AM
Re: through ssh how u connect to another server
appropriate forum?
http://www.ibm.com/developerworks/forums/forum.jspa?forumID=747
(But "man ssh" might be a good start, too.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2007 01:28 PM
12-31-2007 01:28 PM
Re: through ssh how u connect to another server
If you're wanting to 'bounce' a connection from a PC, through a Linux box to an AIX box, it's generally easier to just SSH into the Linux box and then SSH into the AIX box.
If you want to use SSH to 'tunnel' a connection, like the above option, two SSH sessions are required. Your client sets up the port forwarding which will tunnel down the SSH connection. As you'll be encrypting a connection down an encrypted tunnel, it's means your PC will be doing twice the amount of work than it really needs to be. But this can be done. Look at your client's 'local' port forwarding. The SSH command line equivalent is the -L option.
If you want to expose the AIX box to an external interface via a Linux box, you need to look at 'iptables' and how to DNAT a connection. Something like 'iptables -t nat -A PREROUTING -j DNAT -s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2008 01:59 AM
01-01-2008 01:59 AM
Re: through ssh how u connect to another server
ssh user@]hostname
other ways which may include the Auth keys and other functions.... have a look at man ssh