Information
SSH supports two different and incompatible protocols: SSH1 and SSH2. SSH1 was the original protocol and was subject to security issues. SSH2 is more advanced and secure.
Note - If you will be editing all the SSH parameters, use the script in section 6.1 Configure SSH.
Solution
Edit the /etc/ssh/sshd_config file to set the parameter as follows-
awk '/^Protocol/ { $2 = '2' } { print }' /etc/ssh/sshd_config > /etc/ssh/sshd_config.new
/usr/bin/mv /etc/ssh/sshd_config.new /etc/ssh/sshd_config
/usr/sbin/pkgchk -f -n -p /etc/ssh/sshd_config
/usr/sbin/svcadm restart svc:/network/ssh