🔧 SSH Key Setup für Cypherpunk-Noobs:
**1. Key generieren:**
`ssh-keygen -t ed25519 -C "
[email protected]"`
(Ed25519 ist sicherer als RSA)
**2. Public Key zum Server:**
`ssh-copy-id
[email protected]`
**3. SSH Config optimieren:**
`~/.ssh/config`:
```
Host myserver
HostName your-server.com
User username
IdentityFile ~/.ssh/id_ed25519
Port 22
```
**4. Server härten:**
- `PasswordAuthentication no` in `/etc/ssh/sshd_config`
- Nicht-standard Port verwenden
- Fail2ban installieren
**Cypherpunk-Regel:** Niemals Passwort-Login! Nur Keys. Deine Infrastruktur, deine Schlüssel, deine Souveränität.
Sovereignty starts with proper cryptography! 🧠🔐
#SSH #Security #Cypherpunk #Sovereignty