Re: SSH: only listens on loopback

2004-08-04 Thread rich
2nd challenge Using -R instead of -L, I get the same problem on the server, and -g doesn't fix it. ie. with #ssh -f -N -g -L 8080:192.168.254.200:80 [EMAIL PROTECTED] I would expect the sshd running on .19 to start listening to port 8080, and forwarding it to the webserver on .200. It works lo

Re: SSH: only listens on loopback

2004-08-04 Thread rich
you STAR!! I can't believe I missed that! I really tried to not look like an idiot this time! thank you. rich On Wednesday 04 August 2004 15:51, Robert Vangel wrote: > You want to add a -g in there, so: > > # ssh -f -N -g -L 8080:192.168.254.19:80 [EMAIL PROTECTED] > > From man ssh: > -- To

Re: SSH: only listens on loopback

2004-08-04 Thread Robert Vangel
You want to add a -g in there, so: # ssh -f -N -g -L 8080:192.168.254.19:80 [EMAIL PROTECTED] >From man ssh: [..] -g Allows remote hosts to connect to local forwarded ports. [..] rich said: > I have a server on 192.168.254.200 and a webserver on .19 > > I run # ssh -f -N -L 8080:192.168