Windows 开启远程登陆
· One min read
OpenSSH Server Installation
Follow this tutorial to install OpenSSH Server on Windows,
https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse
To start and configure OpenSSH Server,
# Start the sshd service
Start-Service sshd
# OPTIONAL but recommended:
Set-Service -Name sshd -StartupType 'Automatic'
# Confirm the Firewall rule is configured. It should be created automatically by setup. Run the following to verify
if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue | Select-Object Name, Enabled)) {
Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..."
New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
} else {
Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists."
}
You should be able to find sshd
command after the installation,
> where sshd
C:\Windows\System32\OpenSSH\sshd.exe
OpenSSH Server configuration,
https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_server_configuration
TODO
- Tailscale https://tailscale.com/
- Cloudflare tunnel
- Cloudflare web ssh