627 shaares
2 astuces pour accélerer et simplifier les connexions SSH à travers un bastion:
- Utiliser
ControlMaster
pour que toutes les connexions SSH au bastion passent par la même connexion TCPcat << EOF >> ~/.ssh/config ControlMaster auto ControlPath ~/.ssh/ssh_control_%h_%p_%r EOF
- Utiliser ProxyCommand pour se connecter aux serveurs à travers le bastion:
# Use the bastion to connect to internal resources Host *.internal.example.com ProxyCommand ssh bastion nc %h %p