In the afternoon, we tried to setup a reverse ssh tunnel from surveillance room to server room.
But after we typed in the command, we get no response from the server.
From the captured packet of wireshark, we found that the ssh version mismatch cause this problem.
So update openssh to the newest version.
$ ssh -V
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
$ wget http://openbsd.mirror.garr.it/pub/OpenBSD/OpenSSH/portable/openssh-6.6p1.tar.gz
$ tar zxvf openssh-6.6p1.tar.gz
$ cd openssh-6.6p1
$ ./configure
$ make
$ sudo make install
$ ssh -V
OpenSSH_6.6p1, OpenSSL 1.0.1e-fips 11 Feb 2013