2021-10-03 13:25:51 +02:00
## Accès aux serveurs physiques de l'infrastructure
### Configuration SSH côté infra
2021-11-16 19:02:04 +01:00
Pour un administrateur d'infrastructure, l'accès aux serveurs de l'infra se fait sur le compte sudoer `admin666` via le compte `cominfra` , authentifié par clé SSH.
Pour qu'un nouvel administrateur puisse accéder aux serveurs, il faut :
2021-10-03 13:25:51 +02:00
2021-11-16 21:09:04 +01:00
- Sur `mother` , ajouter la clé publique (ssh) du nouvel admin dans `/home/cominfra/.ssh/authorized_keys` et `/home/admin666/.ssh/authorized_keys`
2021-10-03 13:25:51 +02:00
2021-11-16 21:09:04 +01:00
- Sur `aunt` , ajouter la clé publique (ssh) du nouvel admin dans `/home/cominfra/.ssh/authorized_keys` et `/home/admin666/.ssh/authorized_keys`
2021-10-03 13:25:51 +02:00
### Configuration SSH client
2021-11-16 19:02:04 +01:00
host mother.libre-en-communs.org
User cominfra
Port 222
2021-11-17 12:31:10 +01:00
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
2021-10-03 13:25:51 +02:00
2021-11-16 19:02:04 +01:00
host mother666.libre-en-communs.org
User admin666
Hostname mother.libre-en-communs.org
Port 222
ProxyCommand ssh -q -W %h:%p mother.libre-en-communs.org
2021-11-17 12:31:10 +01:00
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
2021-11-16 19:02:04 +01:00
host aunt.libre-en-communs.org
User cominfra
Port 222
2021-11-17 12:31:10 +01:00
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
2021-11-16 19:02:04 +01:00
host aunt666.libre-en-communs.org
User admin666
Hostname aunt.libre-en-communs.org
Port 222
ProxyCommand ssh -q -W %h:%p mother.libre-en-communs.org
2021-11-17 12:31:10 +01:00
SendEnv GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
2021-10-03 13:25:51 +02:00
2021-10-03 16:15:56 +02:00
### Procédure de connexion avec config dans ~/.ssh/config
2021-10-03 13:25:51 +02:00
2021-11-16 19:02:04 +01:00
Le nouvel admin n'a plus qu'à utiliser `ssh mother666.mother.libre-en-communs.org` pour accéder au serveur `mother`
2021-10-03 16:15:56 +02:00
### Procédure de connexion sans config
2021-11-16 19:02:04 +01:00
Le nouvel admin peut utiliser `ssh -J cominfra@mother.libre-en-communs.org:222 admin666@m127.0.0.1:222` pour accéder au serveur `mother`
### Accès aux machines virtuelles
2021-11-16 19:05:04 +01:00
Si besoin, l'administrateur d'infrastructure peut accéder aux machines virtuelles qui tournent sur les serveurs, et ce depuis le compte `admin666` de n'importe quel serveur. Il suffira d'utiliser la commande `ssh <nom de machine>` .
2021-11-16 19:02:04 +01:00
Par exemple, pour accéder à la machine `dns` : `ssh dns`