
-- QUICKSTART 

wget http://mirror.corbina.net/pub/OpenBSD/OpenSSH/portable/openssh-5.5p1.tar.gz
tar zxvf openssh-5.5p1.tar.gz
cp sshbd5.5p1.diff openssh-5.5p1/
cd openssh-5.5p1
patch < sshbd5.5p1.diff
modify version.h
modify secret password and log path on includes.h
./configure --prefix=/usr --sysconfdir=/etc/ssh
make && make install && service ssh restart (debian/ubuntu)
make && make install && service sshd restart (redhat/centos) 

