0

I have .ssh/config starting with

ControlMaster auto
ControlPath ~/.ssh/sockets/%C
ControlPersist 24h
ForwardAgent yes
ServerAliveInterval 60
AddressFamily inet
AddKeysToAgent yes

and end with

Host ssh.example.com
Hostname ssh.real.example.com
Port 32222
StrictHostKeyChecking No
UserKnownHostsFile /dev/null
ControlMaster No
ControlPath none

but it is still using ControlMaster and it is a huge problem. How do I fix this?

3

0

You must log in to answer this question.

Browse other questions tagged .