Table des matières

.

Foire Aux Questions

Environnement Linux - Déport SSH

Table des matières

Rediriger un port local

ssh -L 4444:IP_MATERIEL_A_JOINDRE:PORT_MATERIEL_80_OU_443 MACHINE_SUR_SITE_ACCESSIBLE_EN_SSH

Exemple :

ssh -L 4444:192.168.232.1:443 linuxSSH

Cela aura pour effet de rediriger l'interface web https://192.168.232.1/ (accessible sur le site distant) vers l'adresse suivante : https://localhost:4444/

Le serveur linuxSSH est présent sur le site distant et accessible via SSH.

Plus d'infos

https://www.malekal.com/comment-configurer-le-tunnel-ssh-redirection-de-port/