Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Fri, 20 May 2005 20:43:50 +0400 (MSD)
From: crocodil@...co.net
To: owl-users@...ts.openwall.com
Subject: Re: Web Server



> In other words, the students need to http to the IP of the Owl machine,
> which will direct their requests to one of the local machiensbehind it.
> These machines run Linux.

This is called 'static NAT' and is done with iptables with smth.
like this:

iptables -t nat -A PREROUTING -i eth0 -p tcp -m tcp
      -d 1.2.3.4 --dport 80 -j DNAT
      --to-destination 192.168.10.100

where 1.2.3.4 is your "real" ip address, eth0 is your external
interface and 192.168.10.100 is the machine running web server.

> J.B. Lethbridge, PhD



--
Croco

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.