--- /dev/null
+# SSH configuration file.
+
+
+# Rules for all hosts.
+Host *
+
+# Force protocol version 2 which is more secure.
+    Protocol 2
+
+# Disable X11 and agent forwarding for security reasons.
+    ForwardX11 no
+    ForwardAgent no
+# Don't trust remote X11 clients. If enabled allows bad admins complete access
+# to local X11!
+    ForwardX11Trusted no
+
+# If -M is used store the control master socket in ~/.ssh. Necessary for
+# ControlMaster to work.
+    ControlPath ~/.ssh/master-%l-%h-%p-%r
+
+# Don't send any environment variables.
+    SendEnv