<aside> 📌 這份筆記涵蓋了OpenSSH的安裝步驟、配置說明和使用方法,旨在幫助你快速掌握OpenSSH的基礎知識和實踐應用。

</aside>

**安裝教學wiki**

<aside> 💡 使用PowerShell

</aside>

windows內建安裝

  1. 確認目前的作業系統有包含 OpenSSH 相關功能

    Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'

    Name  : OpenSSH.Client~~~~0.0.1.0
    State : Installed
    
    Name  : OpenSSH.Server~~~~0.0.1.0
    State : NotPresent
    

    通常OpenSSH.Client已經預設安裝了

  2. OpenSSH.Server安裝:設定>系統>選用功能>新增功能

    Untitled

    Untitled


Win32 OpenSSH安裝

  1. 下載

  2. 若是載zip檔解壓縮到C:\ProgramFiles並命名為OpenSSH,也可以下載.msi檔直接安裝

  3. zip檔安裝

    解壓縮到C:\ProgramFiles並命名OpenSSH

    **cd "$env:ProgramFiles\\OpenSSH"
    powershell.exe -ExecutionPolicy Bypass -File install-sshd.ps1**
    

    提示:也可以直接執行install-sshd.ps1檔案安裝


啟動 sshd 服務

Start-Service sshd

Untitled


設定防火牆規則