# ============================================================ # x1-mnl-pph-n1 — Multiple VS Code SSH Windows (Alias Method) # ============================================================ # Reference: https://stackoverflow.com/questions/78418458 # # Each alias allows opening a separate VS Code Remote-SSH # window to the SAME server simultaneously. # # Add this block to your SSH config: # Windows: C:\Users\\.ssh\config # macOS: ~/.ssh/config # Linux: ~/.ssh/config # ============================================================ # --- Primary connection --- Host mnl HostName 100.120.250.96 User xadmin IdentityFile ~/.ssh/id_ed25519 StrictHostKeyChecking no ServerAliveInterval 60 ServerAliveCountMax 3 # --- Second VS Code window --- Host mnl-2 HostName 100.120.250.96 User xadmin IdentityFile ~/.ssh/id_ed25519 StrictHostKeyChecking no ServerAliveInterval 60 ServerAliveCountMax 3 # --- Third VS Code window --- Host mnl-3 HostName 100.120.250.96 User xadmin IdentityFile ~/.ssh/id_ed25519 StrictHostKeyChecking no ServerAliveInterval 60 ServerAliveCountMax 3 # --- Fourth VS Code window --- Host mnl-4 HostName 100.120.250.96 User xadmin IdentityFile ~/.ssh/id_ed25519 StrictHostKeyChecking no ServerAliveInterval 60 ServerAliveCountMax 3