NetApp SSH: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
No edit summary |
m (Text replacement - "</source" to "</syntaxhighlight") |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[ | [[Category:NetApp|SSH]] | ||
== Prüfen, ob das SSH-Homedir /etc/sshd/<user>/.ssh existiert == | == Prüfen, ob das SSH-Homedir /etc/sshd/<user>/.ssh existiert == | ||
< | <syntaxhighlight lang=bash> | ||
nac*> priv set -q diag | nac*> priv set -q diag | ||
nac*> ls /etc/sshd/ | nac*> ls /etc/sshd/ | ||
Line 12: | Line 12: | ||
ssh_host_dsa_key | ssh_host_dsa_key | ||
ssh_host_dsa_key.pub | ssh_host_dsa_key.pub | ||
</ | </syntaxhighlight> | ||
== Anlegen eines Verzeichnisses mit Mode 0700 == | == Anlegen eines Verzeichnisses mit Mode 0700 == | ||
< | <syntaxhighlight lang=bash> | ||
nac*> options wafl.default_qtree_mode | nac*> options wafl.default_qtree_mode | ||
wafl.default_qtree_mode 0777 | wafl.default_qtree_mode 0777 | ||
Line 21: | Line 21: | ||
nac*> qtree create /vol/vol0/__ | nac*> qtree create /vol/vol0/__ | ||
nac*> options wafl.default_qtree_mode 0777 | nac*> options wafl.default_qtree_mode 0777 | ||
</ | </syntaxhighlight> | ||
== NDMPd Status prüfen / anschalten == | == NDMPd Status prüfen / anschalten == | ||
< | <syntaxhighlight lang=bash> | ||
nac*> ndmpd status | nac*> ndmpd status | ||
ndmpd OFF. | ndmpd OFF. | ||
Line 32: | Line 32: | ||
ndmpd ON. | ndmpd ON. | ||
No ndmpd sessions active. | No ndmpd sessions active. | ||
</ | </syntaxhighlight> | ||
== Verzeichnis erzeugen durch kopieren des QTrees == | == Verzeichnis erzeugen durch kopieren des QTrees == | ||
< | <syntaxhighlight lang=bash> | ||
nac*> ndmpcopy /vol/vol0/__ /vol/vol0/etc/sshd/root/.ssh | nac*> ndmpcopy /vol/vol0/__ /vol/vol0/etc/sshd/root/.ssh | ||
... | ... | ||
Line 41: | Line 41: | ||
Ndmpcopy: Done | Ndmpcopy: Done | ||
nac*> qtree delete /vol/vol0/__ | nac*> qtree delete /vol/vol0/__ | ||
</ | </syntaxhighlight> | ||
== SSH-Key /etc/sshd/<user>/.ssh/authorized_keys schreiben == | == SSH-Key /etc/sshd/<user>/.ssh/authorized_keys schreiben == | ||
< | <syntaxhighlight lang=bash> | ||
nac*> wrfile /etc/sshd/root/.ssh/authorized_keys | nac*> wrfile /etc/sshd/root/.ssh/authorized_keys | ||
ssh-dss AAA...== user@clienthost | ssh-dss AAA...== user@clienthost | ||
^C | ^C | ||
</ | </syntaxhighlight> |
Latest revision as of 03:34, 26 November 2021
Prüfen, ob das SSH-Homedir /etc/sshd/<user>/.ssh existiert
nac*> priv set -q diag
nac*> ls /etc/sshd/
.
..
ssh_host_key
ssh_host_key.pub
ssh_host_rsa_key
ssh_host_rsa_key.pub
ssh_host_dsa_key
ssh_host_dsa_key.pub
Anlegen eines Verzeichnisses mit Mode 0700
nac*> options wafl.default_qtree_mode
wafl.default_qtree_mode 0777
nac*> options wafl.default_qtree_mode 0700
nac*> qtree create /vol/vol0/__
nac*> options wafl.default_qtree_mode 0777
NDMPd Status prüfen / anschalten
nac*> ndmpd status
ndmpd OFF.
No ndmpd sessions active.
nac*> ndmpd on
nac*> ndmpd status
ndmpd ON.
No ndmpd sessions active.
Verzeichnis erzeugen durch kopieren des QTrees
nac*> ndmpcopy /vol/vol0/__ /vol/vol0/etc/sshd/root/.ssh
...
Ndmpcopy: Transfer successful [ 0 hours, 0 minutes, 20 seconds ]
Ndmpcopy: Done
nac*> qtree delete /vol/vol0/__
SSH-Key /etc/sshd/<user>/.ssh/authorized_keys schreiben
nac*> wrfile /etc/sshd/root/.ssh/authorized_keys
ssh-dss AAA...== user@clienthost
^C