Video Tutorial Konfigutasi Remote Server Windows Server 2022
Langkah-Langkah Konfigurasi SSH dan Penggunaan PuTTY di Debian 11, agar server Debian bisa diakses secara remote dari komputer client (Windows/Linux) menggunakan protokol SSH.
A. TUJUAN
Mengaktifkan layanan SSH (Secure Shell) pada Debian 11 dan mengaksesnya menggunakan PuTTY dari komputer Windows.
B. KONFIGURASI SSH DI DEBIAN 11
1. Update Sistem
sudo apt update && sudo apt upgrade -y
2. Instalasi OpenSSH Server
sudo apt install openssh-server -y
3. Cek Status Layanan SSH
sudo systemctl status ssh
Jika belum aktif:
sudo systemctl enable ssh
sudo systemctl start ssh
C. CEK IP ADDRESS SERVER
Gunakan perintah:
ip a
Atau:
ip addr show
Misalnya, IP Server: 192.168.1.10
D. KONFIGURASI FIREWALL (JIKA DIPERLUKAN)
Jika menggunakan UFW (Uncomplicated Firewall):
sudo ufw allow ssh
sudo ufw enable
E. UJI COBA DARI CLIENT WINDOWS MENGGUNAKAN PuTTY
1. Unduh PuTTY
- Download dari situs resmi: https://www.putty.org
2. Buka Aplikasi PuTTY
- Di kolom Host Name (or IP address): masukkan IP Debian
· 192.168.1.10
- Port: 22
- Connection type: SSH
3. Klik Open
- Jika muncul peringatan keamanan SSH key (pertama kali), klik Yes.
4. Login ke Debian
- Masukkan username Debian (misalnya siswa) dan password.
F. OPSIONAL: PENGAMANAN SSH
Edit file konfigurasi SSH:
sudo nano /etc/ssh/sshd_config
Contoh pengamanan:
- Nonaktifkan login root:
· PermitRootLogin no
- Ganti port default (opsional):
· Port 2222
Setelah perubahan, restart SSH:
sudo systemctl restart ssh
PENUTUP
Dengan langkah-langkah di atas:
- Debian 11 bisa dikendalikan secara remote dari client menggunakan SSH
- Client Windows bisa menggunakan PuTTY
- Lebih aman dan efisien dibanding akses fisik langsung
Video Tutorial Konfigutasi Remote Server di Debian 11
Langkah-Langkah Konfigurasi Remote Server pada Windows Server 2022, agar server dapat diakses secara Remote Desktop (RDP) dari komputer client.
A. TUJUAN
Mengaktifkan dan mengatur Remote Desktop pada Windows Server 2022 untuk manajemen jarak jauh.
B. PERSIAPAN
1. Pastikan:
· Server sudah terinstall Windows Server 2022
· Terhubung ke jaringan LAN
· User administrator atau user lain memiliki password
C. AKTIVASI REMOTE DESKTOP
1. Buka Server Manager
· Klik Start → Server Manager
2. Masuk ke System Properties
· Klik Local Server
· Di bagian Remote Desktop, klik tulisan “Disabled”
3. Aktifkan Remote Desktop
· Pilih opsi: Allow remote connections to this computer
· Hapus centang: Allow connections only from computers running Remote Desktop with Network Level Authentication (NLA) jika client lama tidak mendukung NLA.
· Klik Apply → OK
D. IZINKAN PENGGUNA YANG BOLEH REMOTE
1. Masih di jendela System Properties:
· Klik tombol Select Users...
· Tambahkan user yang boleh melakukan remote (jika bukan Administrator)
Contoh:
· Klik Add → ketik: Administrator atau nama user lain → klik OK
E. KONFIGURASI FIREWALL
1. Buka Windows Defender Firewall
· Klik Start → cari Windows Defender Firewall
2. Izinkan Remote Desktop
· Klik Allow an app or feature through Windows Defender Firewall
· Pastikan Remote Desktop dicentang di Private dan Public
Atau via command prompt:
netsh advfirewall firewall set rule group="remote desktop" new enable=Yes
F. CEK IP ADDRESS SERVER
· Buka Command Prompt, ketik:
ipconfig
· Catat IP Address server, misalnya: 192.168.1.10
G. UJI AKSES DARI CLIENT (Windows)
1. Dari komputer client:
· Tekan Windows + R → ketik:
· mstsc
(Membuka Remote Desktop Connection)
2. Masukkan IP Server:
192.168.1.10
· Klik Connect, masukkan username dan password server
3. Jika berhasil, akan masuk ke tampilan desktop server secara remote.
H. OPSIONAL: KONFIGURASI STATIC IP (Agar IP Server tidak berubah)
Agar remote server tetap stabil, sebaiknya beri IP statis via:
· Network Settings
· Atau konfigurasi DHCP Reservation di router