- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: OpenSSH
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-16-2003 05:04 AM
06-16-2003 05:04 AM
Thanks, Gary.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:07 AM
06-16-2003 05:07 AM
Re: OpenSSH
receive for free from
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
Rgds Jarle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:18 AM
06-16-2003 05:18 AM
SolutionAlso, ssh in general is much safer than telnet or rlogin connections. All communications, including passwords, are encrypted between the two hosts.
One thing you can do is change the default config file (/opt/ssh/etc/sshd_config) to remove root login capability:
PermitRootLogin no
ANother is to modify the /opt/ssh/etc/ssh_prng_cmds file to include only valid hp-ux commands. This file defines what commands to run to generate entropy, and having invalid system commands and result in a poorer source of random numbers, and slower connect times. I've included my ssh_prng_cmds file as an example; hopefully others will do the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:25 AM
06-16-2003 05:25 AM
Re: OpenSSH
The advantage of using ssh with third party application support
- you can use a passphrase to connect and must not change your password of your application-user
- lan traffic is encrypted
It does not protect against errors of the support.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:52 AM
06-16-2003 05:52 AM
Re: OpenSSH
using ssh is safe as long as the password and keys is handled properly. (I.e. only users with the appropriate clearance have keys/passwords to the respective access level. Use ssh-agent for automatic password handling.
And of course forcing enforcing good passwords, deleting inactive accounts, locking the rack, the room, and so on) But that not ssh's responsibility though...
Also subscribe to security bulletins, to get alerts about ssh security bugs, as soon as they are discovered.
If you are really paranoid, you can even implement NIDS (Network Intrusion Detection systems SNORT/IDS 9000) , or HIDS (host based intrusion detection systems (IDS 9000/tripwire))
Rgds Jarle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:56 AM
06-16-2003 05:56 AM
Re: OpenSSH
there is a secure ftp client also
I am sure that you have the remote commands already disabled such as rcp, rsh, rlogin, etc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 05:57 AM
06-16-2003 05:57 AM
Re: OpenSSH
I've attached my usual document on how to install and use ssh/scp. Its a little confusing at first, but like most things sysadminish, its really just a matter of getting used to it.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2003 09:02 PM
06-16-2003 09:02 PM
Re: OpenSSH
A common mistake is to use a pc client such as Exceed that stores passwords, and automates logins.
I hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2003 03:50 AM
06-17-2003 03:50 AM
Re: OpenSSH
Gary.