You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install SSH server
sudo apt update
sudo apt install openssh-server
# Enable SSH service
sudo systemctl enable ssh
Restrict SSH to Local IP
# Edit SSH configuration
sudo nano /etc/ssh/sshd_config
# Add or modify the following line
ListenAddress 192.168.1.100 # Replace with your local IP# Restart the service
sudo systemctl restart ssh
Connect to SSH Server
ssh username@server_ip_address
Security Enhancements
Two-Factor Authentication with Google Authenticator