Gentoo Archives: gentoo-user

From: Alex Schuster <wonko@×××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] ssh problem
Date: Fri, 25 Feb 2011 13:11:53
Message-Id: 201102251345.02195.wonko@wonkology.org
In Reply to: Re: [gentoo-user] ssh problem by dhk
1 dhk writes:
2
3 > On 02/25/2011 05:36 AM, Adam Carter wrote:
4 > > Did you remember to restart the sshd on your amd64 system? If not, try
5 > > disabling the new high performance stuff on the client. I had a problem
6 > > logging into a solaris box until i disabled it. In my ~/.ssh/config
7 > > file I added;
8 > >
9 > > host <ip or hostname>
10 > >
11 > > HPNDisabled yes
12 >
13 > I don't have a ~/.ssh/config. Will it default to ssh_config in /etc/ssh
14 > or do I need to create one?
15
16 ~/.ssh/config overrides settings in /etc/ssh/ssh_config.
17
18 BTW, ~/.ssh/config is very convenient so simplify access to hosts you acess
19 frequently.
20 Example: With this entry, a 'ssh -p 12345 itsme@×××××××××××××××.org' can be
21 done simply as 'ssh foo'.
22
23 Host foo bar
24 HostName foo.long.domain.org
25 Port 12345
26 User itsme
27
28 Wonko