Operating System - HP-UX
1834465 Members
2860 Online
110067 Solutions
New Discussion

installing sshd on 11.00 system

 
SOLVED
Go to solution
Michael Conners
Occasional Contributor

installing sshd on 11.00 system

Could someone point me to a faq on installing and setting up the ssh daemon?

Thanks.
2 REPLIES 2
Ray Brewer
Valued Contributor

Re: installing sshd on 11.00 system

Here is one it's not HP specific but ti has a lot of information.
http://www.employees.org/~satch/ssh/faq/

Ray
Wodisch
Honored Contributor
Solution

Re: installing sshd on 11.00 system

Hi Michael,

it is quite easy:
1: get it from www.software.hp.com
2: use "swinstall" to install it
3: stop the daemon, configure it, start it
4: use it

ad 1: #download it from
https://payment.ecommerce.hp.com/cgi-bin/swdepot_parser.cgi/cgi/try.pl?productNumber=T1471AA&date=

ad 2: #uncompress and install it with
cd /tmp
uncompress T1471AA*depot.gz
swinstall -s /tmp/T1471AA*depot "*"

ad 3: #since it was started by "swinstall" stop it now:
/sbin/init.d/secsh stop
#edit the config files for client and server:
vi /opt/ssh/etc/ssh*_config
#start the server:
/sbin/init.d/secsh start

ad 4: #use it
ssh -l root target-host

Finally, read the docu at http://www.openssh.org/

HTH,
Wodisch