Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. # diff /tmp/ssh_config.bak /etc/ssh/ssh_config
  2. 0a1,4
  3. > # This file is being maintained by Puppet.
  4. > # DO NOT EDIT
  5. >
  6. > # $OpenBSD: ssh_config,v 1.21 2005/12/06 22:38:27 reyk Exp $
  7. 19c23
  8. < Host *
  9. ---
  10. > # Host *
  11. 22d25
  12. < # ForwardX11Trusted yes
  13. 25c28,29
  14. < # PasswordAuthentication yes
  15. ---
  16. > PasswordAuthentication yes
  17. > PubkeyAuthentication yes
  18. 27,30d30
  19. < # GSSAPIAuthentication no
  20. < # GSSAPIDelegateCredentials no
  21. < # GSSAPIKeyExchange no
  22. < # GSSAPITrustDNS no
  23. 37,40c37,38
  24. < # IdentityFile ~/.ssh/id_rsa
  25. < # IdentityFile ~/.ssh/id_dsa
  26. < # IdentityFile ~/.ssh/id_ecdsa
  27. < # IdentityFile ~/.ssh/id_ed25519
  28. ---
  29. > IdentityFile ~/.ssh/id_rsa
  30. > IdentityFile ~/.ssh/id_dsa
  31. 42c40
  32. < # Protocol 2
  33. ---
  34. > Protocol 2
  35. 44,45c42
  36. < # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
  37. < # MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
  38. ---
  39. > # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
  40. 50,56c47,61
  41. < # VisualHostKey no
  42. < # ProxyCommand ssh -q -W %h:%p gateway.example.com
  43. < # RekeyLimit 1G 1h
  44. < SendEnv LANG LC_*
  45. < HashKnownHosts yes
  46. < GSSAPIAuthentication yes
  47. < GSSAPIDelegateCredentials no
  48. ---
  49. > # HashKnownHosts no
  50. > HashKnownHosts yes
  51. > GlobalKnownHostsFile /etc/ssh/ssh_known_hosts
  52. > Host *
  53. > # GSSAPIAuthentication yes
  54. > GSSAPIAuthentication yes
  55. > # If this option is set to yes then remote X11 clients will have full access
  56. > # to the original X11 display. As virtually no X11 client supports the untrusted
  57. > # mode correctly we set this to yes.
  58. > ForwardX11Trusted yes
  59. > UseRoaming no
  60. > # Send locale-related environment variables
  61. > SendEnv LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
  62. > SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
  63. > SendEnv LC_IDENTIFICATION LC_ALL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement