1834093 Members
2333 Online
110063 Solutions
New Discussion

software install

 
SOLVED
Go to solution
subhashni
Regular Advisor

software install

Hi,I would like to install ssh2 version 3.2.0
F-Secure SSH on a (HP-UX 11.23) PA-Risc server.Where can i download the software and find out the install procedure.Thanks in advance.
unix4me
6 REPLIES 6
DCE
Honored Contributor

Re: software install

Here is the latest ssh binaries - I could not find 3.2 for unix - just windows

Secure shell 4.4
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA

OpenSecure Shell 4.4
http://gatekeep.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-4.4p1/
Bill Hassell
Honored Contributor

Re: software install

And just to be complete, F-secure is a priced product. You can download an evaluation copy from:

http://www.f-secure.com/

although I did not find any links to HP-UX versions. Unless you are adept at compiling and linking, the best solution is to download the installable package from HP.


Bill Hassell, sysadmin
subhashni
Regular Advisor

Re: software install

Thank you for the reply.
Any idea about the below error message.

Permission denied,(publickkey,passwd)
user@server's passwd:
Permission denied ,please try again.

Thanks
unix4me
Raj D.
Honored Contributor
Solution

Re: software install

Subhashni,

Looks like the ssh key configuraiotn has not completed propely,


RSA SecurID Authentication is configured in Reflection or F-Secure SSH using the keyboard interactive authentication method via the SecurID plug-in. This method is recommended because it uses precompiled binaries and enables you to avoid compiling source code.

To configure SSH connections using SecurID Authentication on the SSH UNIX server, you must configure the SSH UNIX Client and Server, set two environmental variables, and start the SSH Server service.

Configure the SSH UNIX Client
To configure the Reflection or F-Secure SSH UNIX Client, edit the ssh2_config file and set AllowedAuthentications to keyboard-interactive:

AllowedAuthentications keyboard-interactive

Configure the SSH UNIX Server
To configure the Reflection or F-Secure SSH UNIX Server, edit the sshd2_config file and set AllowedAuthentications, AuthKbdInt.Required, and AuthKbdInt.Plugin as follows:

AllowedAuthentications keyboard-interactive
AuthKbdInt.Required plugin
AuthKbdInt.Plugin/ssh-securid-plugin

Note: AuthKbdInt.Required makes authentication with securid tokens compulsory. If you want to have securid authentication as an option, in addition to other methods, use the AuthKbdInt.Optional instead.

Start the SSH Server Service
Before starting the SSH Server service, you must set the VAR_ACE and LD_LIBRARY_PATH environmental variables.

* Set VAR_ACE to the directory where the sdconf.rec file is located.

* Set LD_LIBRARY_PATH to the directory where the RSA/Server or RSA/Agent is installed.

For example, if the agent is located in /opt/ace, you would start the service as follows:

$ VAR_ACE=/opt/ace/data LD_LIBRARY_PATH=/opt/ace/prog sshd2

Note: To have the VAR_ACE variable configured on server startup, add it to the host's init script.


You can check this tech link further:
http://support.attachmate.com/techdocs/1914.html


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
subhashni
Regular Advisor

Re: software install

Thanks for the reply. Already the system has HPUX secure shell installed. From where i can get the ssh2 software.
What could be the major difference between the ssh and ssh2. thanks
unix4me
Peter Godron
Honored Contributor

Re: software install

Hi,
ftp://ftp.ssh.fi/pub/ssh/

From readme file:
" What has changed since SSH1?
----------------------------

- SSH has been 98% rewritten.

- SSH now supports other key-exchange methods besides double-
encrypting RSA key exchange. The current distribution comes with
Diffie-Hellman key exchange.

- SSH now has support for DSA and other public key algorithms
besides RSA.

- The protocol is more secure.

- The protocol complies with the upcoming 'secsh' internet standard.

- SSH now supports "subsystems", platform-independent modules that
implement particular functions such as file transfers.

- SSH now has built-in SOCKS support.

- A new feature has been added: sftp, the secure file transfer
protocol.
"