- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Implementing secure shell
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
05-20-2005 05:37 AM
05-20-2005 05:37 AM
I would like to implement secure shell.
let me know all steps related to secure shell.
Thanks and regards
Raj
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 05:53 AM
05-20-2005 05:53 AM
Solutiona. Edit the /opt/ssh/etc/ssh_config file, change the following keyword to the example.
Protocol 2,1
b. Edit the /opt/ssh/etc/sshd_config file, change the following keywords or uncomment the keywords as listed below.
Protocol 2,1
HostKey /opt/ssh/etc/ssh_host_key
HostKey /opt/ssh/etc/ssh_host_rsa_key
HostKey /opt/ssh/etc/ssh_host_dsa_key
PermitRootLogin yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
RhostsAuthentication no
IgnoreRhosts yes
PermitEmptyPasswords no
X11Forwarding no
c. Establish the root trust from HOME to the root account REMOTE.
on REMOTE
cd /roots/.ssh
scp HOME:/roots/.ssh/id_rsa.pub ./id_rsa.pub.HOME
cat id_rsa.pub.HOME >> authorized_keys
d. Test the trusted login ability of root on HOME
root@HOME# ssh REMOTE
if the login was successful without a password the configuration is complete.
This should get you going to set up ssh for root between 2 servers. just repeat the procedure for any other REMOTE server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 06:00 AM
05-20-2005 06:00 AM
Re: Implementing secure shell
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 06:26 AM
05-20-2005 06:26 AM
Re: Implementing secure shell
- Install latest ssh package
- disable unsecure shell (telnet)
Enjoy.
I also recommend to install with ssh tcpwrapper to be able to refuse connection based on IP of requestor.
Permit Root login is not recommended just secure shell with a normal user and su in your shell. Because root is a well known account name. this will disallow bruteforce Cracking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 06:59 AM
05-20-2005 06:59 AM
Re: Implementing secure shell
Try this link,
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
Check out the release notes link.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 03:22 PM
05-20-2005 03:22 PM
Re: Implementing secure shell
http://docs.hp.com/en/T1471-90008/index.html
installation at:
http://docs.hp.com/en/T1471-90008/ch01s07.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 07:20 PM
05-20-2005 07:20 PM
Re: Implementing secure shell
Under /etc/opt/ssh you can find the configuration files and do the appropriate modifications to tune for your requirements.
After modifications u need to kill /opt/ssh/sbin/sshd process and restart it to reflect the changes..
Regards,
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2005 01:24 PM
06-11-2005 01:24 PM