first commit

This commit is contained in:
USER
2023-01-17 16:07:43 +00:00
commit a3c450b2ce
8 changed files with 143 additions and 0 deletions

3
bin/Firewall.ps1 Executable file
View File

@ -0,0 +1,3 @@
New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
Set-Service sshd -StartupType Automatic