Configure SSH Public Key on NetApp Filer

| 0 Comments | 0 TrackBacks
Here's how to configure ssh public key on the Netapp filer. From your host:
ssh-keygen -t dsa -b 2048
telnet 
On the filer:
secureadmin setup ssh
On your host (Mac used an example):
mkdir /mnt
mount -t nfs FILER:/vol/vol0 /mnt
sudo mkdir -p /mnt/etc/sshd/root/.ssh
ls -ltra /mnt/etc/sshd/root/.ssh
cat id_dsa.pub >> /mnt/etc/sshd/root/.ssh/authorized_keys
ssh root@FILER "version"
NetApp Release 7.3: Thu Jul 24 14:18:45 PDT 2008
umount /mnt
rmdir /mnt

No TrackBacks

TrackBack URL: http://baldwinsung.com/cgi-bin/mt-tb.cgi/117

Leave a comment

Recent Entries

Linksys WRT54G Faint Power LED Light
Symptoms: - Router is pingable at 192.168.1.1 for about 5 seconds - Power LED Light is very faint Fix: -…
Safari Full Screen / Maximize Window, Resize Window, Email link, Print link, Open a New Window "button" for Safari
Safari Resources (from http://www.jydesign.com/safari) Tools for Safari: Full Screen / Maximize Window, Resize Window, Email link, Print link, Open a…
Minimal Postfix Configuration for Relay
Update the main.cf to include the minimum to point the host to a specific relayhost. myhostname = something.SOMEDOMAIN.com relayhost =…