Watch the video:
Timestamps:
0:00 - Intro/Explanation
0:36 - Install OpenSSH server
0:58 - Customize options for OpenSSH server
1:10 - Enable SSH on WSL startup (systemd)
2:16 - Allow OpenSSH through the firewall
2:39 - Changing SSH port & Config
3:02 - Change SSH port on Ubuntu 22.10+
3:36 - Testing SSH on Ubuntu WSL boot
3:54 - Connecting to Ubuntu WSL SSH
Want to remote control your Ubuntu WSL, or just access it abroad or over the network? Assuming it’s been started, the OpenSSH server I’ll show you how to set up and configure in this video should be automatically stated as well, meaning you can connect to it and control your Ubuntu WSL from abroad!
Port Forwarding Ubuntu WSL Guide: Go to post or View on YouTube
Using the above, you can port forward the port you used and access it over the internet! I would recommend setting key based authentication and disabling password authentication first!!
Change port on 22.10+:
sudo mkdir -p /etc/systemd/system/ssh.socket.d
[Socket]
ListenStream=
ListenStream=2200
sudo systemctl daemon-reload
sudo systemctl restart ssh