Advertisement
luisg_muniz

Configuración SSH - Solaris 11 Network

Feb 23rd, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Host s11-dom0
  2. Hostname <...>
  3. ForwardAgent yes
  4. ForwardX11 yes
  5. LocalCommand /bin/echo -e "\\e]0;PROXYHOST-S11\\7"
  6. ProxyCommand none
  7.  
  8. Host s11-client
  9. Hostname 192.168.0.111
  10. ForwardX11 yes
  11. LocalCommand /bin/echo -e "\\e]0;CLIENT-S11\\7"
  12.  
  13. Host s11-server
  14. Hostname 192.168.0.100
  15. LocalCommand /bin/echo -e "\\e]0;SERVER-S11\\7"
  16.  
  17. Host s11-host01
  18. Hostname 192.168.0.112
  19. LocalCommand /bin/echo -e "\\e]0;HOST01-S11\\7"
  20.  
  21. Host s11-host02
  22. Hostname 192.168.0.113
  23. LocalCommand /bin/echo -e "\\e]0;HOST02-S11\\7"
  24.  
  25. Host s11-*
  26. EscapeChar none
  27. ForwardAgent no
  28. ForwardX11 no
  29. ForwardX11Trusted yes
  30. IdentityFile ~/.ssh/id_rsa
  31. IdentitiesOnly yes
  32. PermitLocalCommand yes
  33. ProxyCommand ssh -xT s11-dom0 nc %h %p
  34. RequestTTY yes
  35. User oracle
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement