You shouldn't have sshd1 and 2 start up. Rather, you want sshd2 to start
up, and call on sshd1 if someone tries to conect through this
method. to do it:
- clear the init.d (and or cron) scripts that start up sshd1
- open /etc/ssh2/sshd2_config
- set "Port" to 22
- set ssh1Compatibility and sshd1 path on, as
follow:
Ssh1Compatibility yes
Sshd1Path "/usr/sbin/sshd"
#or wherever your sshd1 daemon is.
After that you should be able to connect with both ssh1 and ssh2.
-S-