All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] Web server with ADSL
@ 2002-02-24 13:58 Antonis Lazaridis
  2002-02-24 14:42 ` Greg Scott
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Antonis Lazaridis @ 2002-02-24 13:58 UTC (permalink / raw)
  To: lartc

Sorry,
a bit irrelevant maybe:
I upgraded my internet connection to ADSL:
EthernetCard --> PPPoE --> ADSL modem.

My eth card has a local 169.* IP.
How can i set-up a web server?
How can somebody access my web server?

Thanks,
antonis.

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [LARTC] Web server with ADSL
  2002-02-24 13:58 [LARTC] Web server with ADSL Antonis Lazaridis
@ 2002-02-24 14:42 ` Greg Scott
  2002-02-24 15:01 ` bert hubert
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Scott @ 2002-02-24 14:42 UTC (permalink / raw)
  To: lartc

You'll need a /28 or better IP address range from you ISP 
(at least 8 IP addresses).  Of the 8, the bottom and top
are gone for network and broadcast addresses.  You'll need
one inside your ADSL router, one on the outside interface
of your PPoE box, and one dedicated to your web server. 
And you will need the appropriate NAT entries setup in
either an iptables or ipchains script on the PPoE box.

Oh - and your PPoE box or somebody will need to supply 
DHCP for systems in your internal network.  Don't use
DHCP for your web server.

- Greg Scott


-----Original Message-----
From: Antonis Lazaridis [mailto:antonis_san@hotmail.com]
Sent: Sunday, February 24, 2002 7:58 AM
To: lartc@mailman.ds9a.nl
Subject: [LARTC] Web server with ADSL


Sorry,
a bit irrelevant maybe:
I upgraded my internet connection to ADSL:
EthernetCard --> PPPoE --> ADSL modem.

My eth card has a local 169.* IP.
How can i set-up a web server?
How can somebody access my web server?

Thanks,
antonis.

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LARTC] Web server with ADSL
  2002-02-24 13:58 [LARTC] Web server with ADSL Antonis Lazaridis
  2002-02-24 14:42 ` Greg Scott
@ 2002-02-24 15:01 ` bert hubert
  2002-02-24 15:25 ` Stef Coene
  2002-02-24 18:58 ` Greg Scott
  3 siblings, 0 replies; 5+ messages in thread
From: bert hubert @ 2002-02-24 15:01 UTC (permalink / raw)
  To: lartc

On Sun, Feb 24, 2002 at 08:42:18AM -0600, Greg Scott wrote:
> You'll need a /28 or better IP address range from you ISP 
> (at least 8 IP addresses).  Of the 8, the bottom and top
> are gone for network and broadcast addresses.  You'll need

eh? While not a real on-topic question, Antonis can setup a webserver just
by starting one. All he needs to do is know what hus outside IP address is
and if it is stable.

You don't need a /28 for that.

Regards,

bert

-- 
http://www.PowerDNS.com          Versatile DNS Software & Services
http://www.tk                              the dot in .tk
http://lartc.org           Linux Advanced Routing & Traffic Control HOWTO
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [LARTC] Web server with ADSL
  2002-02-24 13:58 [LARTC] Web server with ADSL Antonis Lazaridis
  2002-02-24 14:42 ` Greg Scott
  2002-02-24 15:01 ` bert hubert
@ 2002-02-24 15:25 ` Stef Coene
  2002-02-24 18:58 ` Greg Scott
  3 siblings, 0 replies; 5+ messages in thread
From: Stef Coene @ 2002-02-24 15:25 UTC (permalink / raw)
  To: lartc

On Sunday 24 February 2002 14:58, you wrote:
> Sorry,
> a bit irrelevant maybe:
> I upgraded my internet connection to ADSL:
> EthernetCard --> PPPoE --> ADSL modem.
>
> My eth card has a local 169.* IP.
> How can i set-up a web server?
> How can somebody access my web server?
I have the same setup.  I forward port80 from my firewall to the web-server.  
The web-server has a normal 169.* address.
I do this with iptables :

iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp -d $EX_IP --dport 80 -j DNAT --to 
192.168.1.253:80
iptables -A FORWARD -p tcp -d 192.168.1.253 --dport 80 -j ACCEPT

Stef

-- 

stef.coene@docum.org
 More QOS info : http://www.docum.org/
 Title : "Using Linux as bandwidth manager"
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [LARTC] Web server with ADSL
  2002-02-24 13:58 [LARTC] Web server with ADSL Antonis Lazaridis
                   ` (2 preceding siblings ...)
  2002-02-24 15:25 ` Stef Coene
@ 2002-02-24 18:58 ` Greg Scott
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Scott @ 2002-02-24 18:58 UTC (permalink / raw)
  To: lartc

Maybe I made some bogus assumptions:

> I upgraded my internet connection to ADSL:
> EthernetCard --> PPPoE --> ADSL modem.

So I was thinking there were three separate boxes:

1 - An ADSL router
2 - A PPPoE box doing firewall stuff
3 - a web server inside the LAN

Next time, I'll try to wake up a little more before typing.

- Greg



-----Original Message-----
From: bert hubert [mailto:ahu@ds9a.nl]
Sent: Sunday, February 24, 2002 9:01 AM
To: Greg Scott
Cc: 'Antonis Lazaridis'; lartc@mailman.ds9a.nl
Subject: Re: [LARTC] Web server with ADSL


On Sun, Feb 24, 2002 at 08:42:18AM -0600, Greg Scott wrote:
> You'll need a /28 or better IP address range from you ISP 
> (at least 8 IP addresses).  Of the 8, the bottom and top
> are gone for network and broadcast addresses.  You'll need

eh? While not a real on-topic question, Antonis can setup a webserver just
by starting one. All he needs to do is know what hus outside IP address is
and if it is stable.

You don't need a /28 for that.

Regards,

bert

-- 
http://www.PowerDNS.com          Versatile DNS Software & Services
http://www.tk                              the dot in .tk
http://lartc.org           Linux Advanced Routing & Traffic Control HOWTO
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-02-24 18:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-02-24 13:58 [LARTC] Web server with ADSL Antonis Lazaridis
2002-02-24 14:42 ` Greg Scott
2002-02-24 15:01 ` bert hubert
2002-02-24 15:25 ` Stef Coene
2002-02-24 18:58 ` Greg Scott

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.