Qualquer VPS público fica bruta-forçado dentro de minutos após entrar online. Esta é a linha de base que a impede. Funciona em qualquer servidor Ubuntu/Debian — incluindo o nosso.
# on YOUR computer:
ssh-keygen -t ed25519 -C "vps"
ssh-copy-id root@YOUR_SERVER_IP
ssh root@YOUR_SERVER_IP # must log in WITHOUT password — verify!
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication no/' /etc/ssh/sshd_config
systemctl reload ssh
# keep this session open; test a NEW connection before closing it
apt install -y ufw fail2ban
ufw default deny incoming && ufw default allow outgoing
ufw allow OpenSSH && ufw enable
cat > /etc/fail2ban/jail.local <<'EOF'
[sshd]
enabled = true
maxretry = 5
bantime = 1h
EOF
systemctl enable --now fail2ban
apt install -y unattended-upgrades
dpkg-reconfigure -plow unattended-upgrades # choose Yes
É o 80/20 da segurança do servidor: chaves, firewall, bans, patches. Queres saltar o passo 1-2? Nossos servidores enviam endurecidos por padrão – ver planos.