> I am trying to figure out how to get one host to ssh into another host
> without getting connetion refused. Is there a procedure on how to do this?
Do you have 'ALL : ALL : DENY' in your /etc/hosts.deny file ?
If so, you need to add some lines in your /etc/hosts.allow file.
If you want to open sshd to any IP, then use
sshd : ALL : ALLOW
If you want to restrict sshd to your trusted IP numbers, then use
sshd : 127.0.0.1 my.lan.subnet. : ALLOW
sshd : my.isp.number my.work.subnet. : ALLOW
(yes, you can use multiple lines)
Thanks... Dan.