Not difficult with the SGI compilers.  The configure script picks them

up just fine.

Do this in your SSH directory (/usr/local/ssh/):

/configure

make

make install

Generate your individual user key after logging out of root.  It's

done! :-)

To do more than one machine easily:

Put the SSH package in an NFS exportable directory.

/configure

make

make install (Puts SSH on NFS server)

Add your SSH directory as an export that is readable by root

Mount onto client boxes.

As root on client cd into the mounted SSH directory.

make install

Your done!

To expand the SGI theme here and transition to Linux:

I have an init script for SGI that starts and stops sshd, if anyone

wants it please email me and I'll forward it.  I think it would be

easily modifiable for the Linux version bootup style.  I used a

standard SGI type SysV script incorporating the chkconfig utility.

Dow

PS.  Here is the script, forget the above need to email me!

#############################

#!/bin/bsh

#

# Start/Stop the secure shell daemon.

#

# Written by Dow Hurst, 1999.

PATH=/bin:/usr/bin:/usr/local/sbin

SSHD=/usr/local/sbin/sshd

PIDFILE=/etc/ssh2/sshd2_22.pid

IS_ON=/sbin/chkconfig

case $1 in

'start')

    if  $IS_ON sshd2 && test -x $SSHD; then

        $SSHD

        echo 'Secure shell daemon started.'

    else

        echo 'Secure shell daemon chkconfig switch is off.'

        echo 'or files do not exist.'

    fi

    ;;

'stop')

    echo "Stopping Secure shell server"

    kill -KILL `cat $PIDFILE`

    rm $PIDFILE

    ;;

*)

    echo 'Usage: /etc/init.d/sshd start|stop'

    ;;

esac

####################################


-- 
__________________________________________________________
Dow Hurst                   Office: 770-499-3428
Systems Support Specialist  Fax:    770-423-6744
1000 Chastain Rd.
Chemistry Department SC428  Email:">dhurst@kennesaw.edu
Kennesaw State University         ">Dow.Hurst@mindspring.com
Kennesaw, GA 30144
*********************************
*Computational Chemistry is fun!*
*********************************
--
To unsubscribe: mail ">majordomo@ale.org with "unsubscribe ale" in message body.