RHEL4 中ssh在做tunnelling的时候如何绑定网卡IP

RHEL4 中ssh在做tunnelling的时候如何绑定网卡IP

版本:  CentOS release 4.5

openssh-3.9p1-8.RHEL4.20
openssh-server-3.9p1-8.RHEL4.20
openssh-askpass-3.9p1-8.RHEL4.20
openssh-askpass-gnome-3.9p1-8.RHEL4.20
openssh-clients-3.9p1-8.RHEL4.20

ssh -L 192.168.0.1:8080:example.com:80 example.com

错误信息: Bad forwarding specification '192.168.0.1:8080:example.com:80'

试过 -b 192.168.0.1,  还是绑定到了127.0.0.1.

--------------------------------
我发现在Ubuntu 中openssh-clients4.5 直接支持[-L [bind_address:]port:host:hostport]

请教各位熟悉openssh-clients-3.9的朋友如何解决这个问题??

谢谢      
sample:
  ssh  -l user  -L 6666:work.host:22  gate.host  cat -

含义是: 在本地主机上, 用 user 用户建立一个到主机 gate.host 的 ssh 连接, 并执行命令 "cat -", 当这个会话成功建立后, 重定向所有到本地 6666 端口的访问到 work.host 的 22 号端口.      
学习到了,实验了下有效果,LS THX