- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH and secure web console
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
06-27-2003 11:57 AM
06-27-2003 11:57 AM
I've been working on my HP-SSH tutorial for HP World and gave it to a friend to look over. He said there is one example he would love to see: setting up a SSH tunnel to the "secure" web console. (client-internet-firewall-SWC). I spent about 8 hours working on it, but haven't been successful yet. Before I spend more time, I was wondering if anyone has been successful and if so, could you please share your configuration. Thanks - Chris (P.S. I know you can buy boxes that are more secure than HP's SWC, this is more of just a challenging puzzle now).
Solved! Go to Solution.
- Tags:
- ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 12:00 PM
06-27-2003 12:00 PM
Re: SSH and secure web console
If you are working on a document, please let us know what that is.
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
06-27-2003 12:08 PM
06-27-2003 12:08 PM
Re: SSH and secure web console
ssh -L8001:webconsole:80 sshdserver
(use the standard for forwarding to a 3rd host)
But maybe it has to be something more like:
ssh -L2000:webconsole:80 -L2001:webconsole:443 -R2002:webconsole:23 sshdserver
- Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 12:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 12:31 PM
06-27-2003 12:31 PM
Re: SSH and secure web console
1)
nmap -sS -PT -PI -O -T 3 172.31.195.134 nmap -sS -PT -PI -O -T 3 10.1.1.10
(The 1599 ports scanned but not shown below are in state: closed)
Port State Service
23/tcp open telnet
80/tcp open http
Remote OS guesses: Router/Switch/Printer (LanPlex 2500/Cisco Catalyst 5505/CISCO 6509/Trancell Webramp/Xylan Omni Switch)/Epson Stylus (100BTX-NIC HP Secure Web Console, Sonicwall firewall appliance 3.3.1), VxWorks 5.3.x bases system (usually an ethernet hub or switch) or BayNetworks MicroAnnex XL term server
Nmap run completed -- 1 IP address (1 host up) scanned in 110 seconds
edit /etc/hosts
10.1.1.10 webnms1
good :
ssh -L8001:webnms1:80 nms1
The authenticity of host 'nms1 (172.31.195.133)' can't be established.
RSA1 key fingerprint is 32:49:7c:9c:32:23:a6:55:d0:3b:93:55:af:77:ce:4a.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'nms1,172.31.195.133' (RSA1) to the list of known hosts.
root@nms1's password:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 01:41 PM
06-27-2003 01:41 PM
Re: SSH and secure web console
- Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 12:22 AM
07-01-2003 12:22 AM
Re: SSH and secure web console
I would prefer SSL-enabling the web server if possible than tunneling the HTTP connection over SSH. It is much cleaner that way because there is no need to maintain the tunnel, encryption is end-to-end from web browser to web server and the webserver is still authenticated via its certificate.
I don't understand why they called it secure web console when the web access is not SSL-enabled over HTTPS at all.
My 2.08 cents. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 06:26 AM
07-01-2003 06:26 AM
Re: SSH and secure web console
You connect to the SWC on port 80 - it connects via loopback to port 23; exclusive or'ing with the ASCII code for the letter 'E'...
There is an article on SANS about the SWC which goes into detail on the security.
dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 06:09 PM
07-01-2003 06:09 PM
Re: SSH and secure web console
Yeap, read about the XOR quite a long while ago. It is not encryption at all. Such encoding (not encryption) schemes should be discouraged along with the likes of the base64 encoding scheme.
My 2.08 cents. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 06:21 PM
07-01-2003 06:21 PM
Re: SSH and secure web console
- Chris