看了一下openssh-server的源码 @ ~/src/openssh-5.9p1/channels.c +1227
debug2("channel %d: dynamic request: socks5 host %s port %u command %u",
c->self, c->path, c->host_port, s5_req.command);
也就是说,debug level至少要开到2档(sshd -d 2)才可以看到这个log。另外因为是socks5代理(tcp层的),所以openssh没有理由也不会去记录url,有兴趣的话可以hack一下源码,难度应该不会很大。至少可以把debug2改成debug1或者logit什么的。