Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Secure-Shell
[Top] [All Lists]

Re: Remote portforwarding and virtualhost

Subject: Re: Remote portforwarding and virtualhost
Date: Wed, 21 Jun 2006 10:34:11 +1000
Logu wrote:
I have a machine with  a public IP. I want to remote
portforward one of the webserver port (80) to this machine.
The webserver is apache with 5 virualhosts. If I forward the
connection to the public IP machine, I am not able to get the
corresponding webpages from the virtualhosts. Instead I am
getting all from one virtualhost. Is there a way to
distinguish the virtualhost while forwarding. ?

There is no problem with the apache configuration as I am
getting the correct pages from the localnetwork.

ssh -g -R 8080:v1.local.com:80 publicIP
ssh -g -R 8081:v2.local.com:80 publicIP
ssh -g -R 8082:v3.local.com:80 publicIP

What kind of virtual hosts are you using?

I am using Name based virtual host (ie., v1.local.com, v2.local.com and v3.local.com resolve to same IP).

SSH port forwarding is purely at the TCP layer, whereas HTTP name-based virtualhosts are implemented at the application layer.


For this to work, the HTTP client needs to send the virtualhost name to the tunnel. One way to do this would be to put entries for "v[1-3].local.com" into the HTTP client's hosts file pointing to publicIP (which also means you can make do with only one port forward).

--
Darren Tucker (dtucker at zip.com.au)
GPG key 8FF4FA69 / D9A3 86E9 7EEE AF4B B2D4  37C9 C982 80C7 8FF4 FA69
    Good judgement comes with experience. Unfortunately, the experience
usually comes from bad judgement.

<Prev in Thread] Current Thread [Next in Thread>