- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Installing 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
06-05-2003 02:26 AM
06-05-2003 02:26 AM
I've been reading some posts of how to install SSH. I am new to this and I am still a bit confuse :(
I want to able to ssh into my hp-ux, also ssh out from it (server and agent). I belive I've got a choice of using HP SSH and OpenSSH (and others). Which one is easier to install since I am new to unix admin and don't want too much complications - not yet anyway :). I also need some advice on configuration. ie. IP restrction and change of default port 22.
Many thanks in advance.
Priss
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 02:38 AM
06-05-2003 02:38 AM
Solution1. install HP's bundled version of SSH. Its far simpler to install and you dont really need to configure anything. Install and go.
2. To restrict ip access use /var/adm/inetd.sec (see man inetd.sec) Its easy, define servies (ssh) and what to deny.
3. Changing the default port may not be easy, and it will cause problems with other people running SSH which still use the default port of 22, but you should be able to configure it in /opt/ssh/etc/sshd_config and ssh_config.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 02:41 AM
06-05-2003 02:41 AM
Re: Installing SSH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 04:05 AM
06-05-2003 04:05 AM
Re: Installing SSH
On the other hand, if you need to compile it yourself for specific options, then downloading the source from
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.6.1p1/
is the way to go. However, you will need to install zlib, libiconv, tcpwrappers and openssl first.
Keep ssh on port 22. You'll have much less grief with ssh clients that way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 10:41 AM
06-05-2003 10:41 AM
Re: Installing SSH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 10:44 AM
06-05-2003 10:44 AM
Re: Installing SSH
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 11:03 AM
06-05-2003 11:03 AM
Re: Installing SSH
I see that you are using a key for which there is no passphrase.
Isn't that somewhat insecure?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 10:34 PM
06-05-2003 10:34 PM
Re: Installing SSH
You can get over this by using the key management daemon and this will hold your key and passphrase in memory until you logout.
From a security point of view using passphrases is mixed blessing because:
1. There are no limits/restrictions on the phrase, ie you can use just
2. There is no way of enforcing ageing etc. as you can with passwords.
Another word of caution. Out of the box SSH does not record login/outs in the "wtmp" file, thus (b)last etc. won't show anything.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 04:39 AM
06-06-2003 04:39 AM
Re: Installing SSH
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.6.1p1/
Both of these version use wtmp appropriately.
Now since they do not use login by default, you will not get a record of bad login attempts (as reported by lastb).