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
04-14-2003 07:28 AM
04-14-2003 07:28 AM
SSH
I use SSH from CDE, SSH does not show hostname on the terminal like it does when logged in the servers using SSH on pc's. Anyone knows how to configure SSH to show the hostname on Top of the terminal or is there any other way to configure this in CDE?, please let me know.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 07:37 AM
04-14-2003 07:37 AM
Re: SSH
This uses secure shell to invoke the dtterm program, displaying the hostname at the top of the window as you requested, and displaying the results on the WHATEVER terminal. However, dtterm itself is NOT encryped, so the security of this is questionable.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 09:14 AM
04-14-2003 09:14 AM
Re: SSH
Thanks, it works. I quickly put this together
ssh $HOST:/usr/dt/bin/dtterm -name `uname -n` -bg "cyan" -fg "black" -sb -geometry 120
It is working except scroll bar and geometry.
Any idea?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 09:25 AM
04-14-2003 09:25 AM
Re: SSH
The following will give you a very long history :
/usr/dt/bin/dtterm -sl 20000
There is a max to the historysize --> man dtterm.
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 09:28 AM
04-14-2003 09:28 AM
Re: SSH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 10:10 AM
04-14-2003 10:10 AM
Re: SSH
/bin/echo \\033]0\;`uname -n`\\007
Which will put the host name in the title bar of your xterm.
Also, if you have "ForwardX11 Yes" in your ssh_config file on the local host and in sshd_config on your remote host, then ssh will automatically tunnel X11 output from the X client to your server. It will set the DISPLAY variable on the remote host, and your X traffic will be encrypted,just like your terminal traffic.