]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - ssh_config
ssh_config: Set StrictHostKeyChecking to ask.
[config/dotfiles.git] / ssh_config
1 # SSH configuration file.
2
3
4 # Rules for all hosts.
5 Host *
6
7 # Force protocol version 2 which is more secure.
8     Protocol 2
9
10 # Disable X11 and agent forwarding for security reasons.
11     ForwardX11 no
12     ForwardAgent no
13 # Don't trust remote X11 clients. If enabled allows bad admins complete access
14 # to local X11!
15     ForwardX11Trusted no
16
17 # If -M is used store the control master socket in ~/.ssh. Necessary for
18 # ControlMaster to work.
19     ControlPath ~/.ssh/master-%l-%h-%p-%r
20
21 # Don't send any environment variables.
22     SendEnv
23
24 # Ask before adding any host keys to ~/.ssh/known_hosts.
25     StrictHostKeyChecking ask