Renommage proxy dans la conf ssh utilisateur (Corrige #5)
This commit is contained in:
parent
86ce47d24f
commit
3981f2dd3c
|
@ -15,16 +15,16 @@ et `/home/admin666/.ssh/authorized_keys`.
|
||||||
|
|
||||||
Éditer le fichier `~/.ssh/config` :
|
Éditer le fichier `~/.ssh/config` :
|
||||||
```
|
```
|
||||||
host machine_physique.libre-en-communs.org
|
host machine_physique-proxy.libre-en-communs.org
|
||||||
|
Hostname machine_physique.libre-en-communs.org
|
||||||
User cominfra
|
User cominfra
|
||||||
Port 222
|
Port 222
|
||||||
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
|
|
||||||
host machine_physique666.libre-en-communs.org
|
host machine_physique.libre-en-communs.org
|
||||||
User admin666
|
User admin666
|
||||||
Hostname machine_physique.libre-en-communs.org
|
|
||||||
Port 222
|
Port 222
|
||||||
ProxyCommand ssh -q -W %h:%p machine_physique.libre-en-communs.org
|
ProxyJump machine_physique-proxy.libre-en-communs.org
|
||||||
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ host machine_physique666.libre-en-communs.org
|
||||||
|
|
||||||
Pour accéder au serveur `machine_physique`, le nouvel admin n'a plus qu'à utiliser :
|
Pour accéder au serveur `machine_physique`, le nouvel admin n'a plus qu'à utiliser :
|
||||||
```
|
```
|
||||||
ssh machine_physique666.libre-en-communs.org
|
ssh machine_physique.libre-en-communs.org
|
||||||
```
|
```
|
||||||
|
|
||||||
### Procédure de connexion sans config
|
### Procédure de connexion sans config
|
||||||
|
|
|
@ -13,23 +13,25 @@ Note : en IPV6, bien qu'en règle générale la connexion directe soit désactiv
|
||||||
|
|
||||||
### Configuration SSH client
|
### Configuration SSH client
|
||||||
|
|
||||||
host machine_physique.libre-en-communs.org
|
```
|
||||||
|
host machine_physique-proxy.libre-en-communs.org
|
||||||
|
Hostname machine_physique.libre-en-communs.org
|
||||||
User cominfra
|
User cominfra
|
||||||
Port 222
|
Port 222
|
||||||
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
|
|
||||||
match host *.a-lec.org
|
host *.a-lec.org
|
||||||
User admin666
|
User admin666
|
||||||
Hostname %h
|
|
||||||
Port 22
|
Port 22
|
||||||
ProxyJump machine_physique.libre-en-communs.org
|
ProxyJump machine_physique-proxy.libre-en-communs.org
|
||||||
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
|
|
||||||
host *.chalec.org
|
host *.chalec.org
|
||||||
User admin666
|
User admin666
|
||||||
Port 22
|
Port 22
|
||||||
ProxyJump machine_physique.libre-en-communs.org
|
ProxyJump machine_physique-proxy.libre-en-communs.org
|
||||||
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
||||||
|
```
|
||||||
|
|
||||||
Pour fixer les variables Git directement dans la conf, ajouter un `SetEnv` avant `SendEnv` :
|
Pour fixer les variables Git directement dans la conf, ajouter un `SetEnv` avant `SendEnv` :
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue