-
Notifications
You must be signed in to change notification settings - Fork 123
Description
hi
I deploy this patch at server end in /opt/ssh, and I add ObfuscatedPort and ObfuscateKeyword in sshd_config and start the sshd:
/opt/ssh/sbin/sshd -f /opt/ssh/etc/sshd_config
then I deploy the patch at client in the same dir, and start the client:
ssh -z -Z gfwfucker gfw@xxxx -p 443 -v
OpenSSH_5.2p1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /home/jaseywang/.ssh/config
debug1: Reading configuration data /opt/sshd/etc/ssh_config
debug1: Applying options for *
debug1: Connecting to xxxx [yyyy] port 443.
debug1: Connection established.
debug1: Obfuscation enabled
debug1: identity file /home/jaseywang/.ssh/id_rsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.2
debug1: match: OpenSSH_5.2 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '[xxxx]:443' is known and matches the RSA host key.
debug1: Found key in /home/jaseywang/.ssh/known_hosts:315
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Obfuscation disabled
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /home/jaseywang/.ssh/id_rsa_office
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
frome about debug, I can see
debug1: Obfuscation enabled
and
debug1: Obfuscation disabled
and I thiink it may not a success, so any help?