SSH Passwords & Keys
Store and manage SSH passwords and private keys securely.
SSH Passwords
Creating SSH Password Credentials
- Navigate to Credentials → Add Credential
- Select type: SSH Password
- Enter a name and description
- Enter username and password
- Optionally add enable/privileged mode password
- Select folder and click Save
SSH Keys
Supported Key Types
- RSA (2048, 4096 bit)
- ECDSA (256, 384, 521 bit)
- Ed25519 (recommended)
Creating SSH Key Credentials
- Navigate to Credentials → Add Credential
- Select type: SSH Key
- Enter a name and username
- Paste private key or upload key file
- Enter passphrase if key is encrypted
- Click Save
# Generate Ed25519 key (recommended)
ssh-keygen -t ed25519 -C "netstacks-automation"
# Copy public key to device
ssh-copy-id -i ~/.ssh/id_ed25519.pub admin@device