RUN POWERSHELL
INSTALL - OpenSSH Yükleme
FIREWALL - Güvenlik Duvarı İzinleri
REMOVE - OpenSSH Kaldırma
INSTALL - OpenSSH Yükleme
Bash:
Get-WindowsCapability
-Online | ? Name -like 'OpenSSH*'
Add-WindowsCapability
-Online -Name OpenSSH.Client~~~~0.0.1.0
Add-WindowsCapability
-Online -Name OpenSSH.Server~~~~0.0.1.0
Start-Service sshd
Set-Service -Name sshd
-StartupType Automatic
Set-Service -Name
sshd-agent -StartupType Automatic
Get-Service ssh* |
Start-Service
Get-Service –Name ssh*
FIREWALL - Güvenlik Duvarı İzinleri
Bash:
Get-NetFirewallRule -Name
*ssh*
New-NetFirewallRule -Name
sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound
-Protocol TCP -Action Allow -LocalPort 22
REMOVE - OpenSSH Kaldırma
Bash:
Remove-WindowsCapability
-Online -Name OpenSSH.Client~~~~0.0.1.0,
Remove-WindowsCapability
-Online -Name OpenSSH.Server~~~~0.0.1.0
Linux SSH Server Kurulumu - SSH Aktif Yapmak
Sırasıyla aşağıdaki kodları yazın. sudo apt update sudo apt-get install openssh-server sudo systemctl status ssh sudo ufw allow ssh ssh username@ip_address Kullanıcı şifrelerini değiştirme Root şifresi sudo –i passwd Kullanıcı şifresi değiştirme sudo –i...
forum.ubden.com.tr
Moderatör tarafında düzenlendi: