dhk writes: > On 02/25/2011 05:36 AM, Adam Carter wrote: > > Did you remember to restart the sshd on your amd64 system? If not, try > > disabling the new high performance stuff on the client. I had a problem > > logging into a solaris box until i disabled it. In my ~/.ssh/config > > file I added; > > > > host <ip or hostname> > > > > HPNDisabled yes > > I don't have a ~/.ssh/config. Will it default to ssh_config in /etc/ssh > or do I need to create one?
~/.ssh/config overrides settings in /etc/ssh/ssh_config. BTW, ~/.ssh/config is very convenient so simplify access to hosts you acess frequently. Example: With this entry, a 'ssh -p 12345 it...@foo.long.domain.org' can be done simply as 'ssh foo'. Host foo bar HostName foo.long.domain.org Port 12345 User itsme Wonko