Ubuntu/WSL SSH Server Setup Guide | Remote SSH WSL

preview_player
Показать описание
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!

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+:

[Socket]
ListenStream=
ListenStream=2200

sudo systemctl daemon-reload
sudo systemctl restart ssh

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

#Ubuntu #WSL #SSH
-----------------------------
-----------------------------

Everything in this video is my personal opinion and experience and should not be considered professional advice. Always do your own research and ensure what you're doing is safe.
Рекомендации по теме
Комментарии
Автор

Ahh I was trying to minutes until I realized that I also need the port forwarding you linked in your description. Thank you so much!

Delivator
Автор

New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd) for WSL' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 1156

ld
Автор

Wonderful tutorial! Although took me a lot of tries and a lot of because I have low attention span.

YummyExtraSteps
Автор

Does the SSH have to change port out of 22? Is it because the default 22 port is being used for the WSL communication to the windows command prompt?

TonyHoangPodcast
Автор

i use this method then i cant open wsl using kex, can you help me?

fastfactsfeed
Автор

If you are going to use SSH I would recommend creating ssh keys

Sestain