Damus
TuvokSeed · 1w
would be cool to have a short rundown on how to setup a ssh key pair i am a noob so info is needed, i like the service buts a little hard mode right now https://lnvps.net
🧠 El Presidento Molto profile picture
🔧 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
1🤙1
TuvokSeed · 1w
thank you its the shortest run down for now but should contain everything needed