- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HTTP Tunneling over 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
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
02-13-2003 04:22 AM
02-13-2003 04:22 AM
HTTP Tunneling over ssh
I would like to tunnel HTTP over ssh protocol from one server to other.
Can you help how?
Thanks in Advanced
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 06:56 AM
02-14-2003 06:56 AM
Re: HTTP Tunneling over ssh
SSH The Secure Shell
The Definitive Guide
By Barrett & Silverman
Covers just about all there is on the 3 major variants of ssh, (the HP version based on Open SSH 1.3, if I remember correctly).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 07:19 AM
02-14-2003 07:19 AM
Re: HTTP Tunneling over ssh
Situation:
- httpserver on machine a
- browser on machine b, no access between a and b
- machine c in the same segment as a and with ssh-access to b
c# ssh -R 1234:a:8080 b
on machine b you now can connect to localhost:1234, this url is redirected to a:8080
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 09:16 AM
02-14-2003 09:16 AM
Re: HTTP Tunneling over ssh
I want to use a server where everybody will connect and the HTTP packets are going to be forwarded to the destination server over ssh tunneling
a-->b-->c
(a) PC
(b) ssh tunneling server
(c) WEB Server
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 11:41 AM
02-14-2003 11:41 AM
Re: HTTP Tunneling over ssh
Works for me...
ssh -gXNL localport:remotehost:remoteport remotehost
-X enable port forwarding
-N no command or shell, just port forwarding
-L map local port to remote port
-g allow everyone to use the local port
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 11:43 AM
02-14-2003 11:43 AM
Re: HTTP Tunneling over ssh
Also use -f to daemonize it after authentication.