# Guides — PC Multimedia ## Indeks | Guide | Path | Kapan dipakai | |-------|------|---------------| | Migrasi IP / NIC | [migration.md](./migration.md) | Ganti IP, tambah NIC, pindah subnet | | Setup SSH key | [../../server-audit/scripts/setup-ssh-key-multimedia.ps1](../../server-audit/scripts/setup-ssh-key-multimedia.ps1) | Ulang passwordless SSH | ## OpenSSH — setup awal (referensi) Sudah dilakukan 6 Jul 2026. Ulang jika service corrupt: ```powershell # Di MULTIMEDIA (PowerShell Admin) Get-Service sshd Set-Service sshd -StartupType Automatic Start-Service sshd New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' ` -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22 ``` Key auth: jalankan [setup-ssh-key-multimedia.ps1](../../server-audit/scripts/setup-ssh-key-multimedia.ps1).