Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: iptables

4 views
Skip to first unread message

Eden Caldas

unread,
Jun 22, 2011, 4:50:02 PM6/22/11
to
You DHCP server must tell your clients which one is the gateway (your debian6 machine must be it)
You will also need a DNS server and make your dhcp inform this to clients as well.

have you done NAT rules? You will need a MASQUERADE one.


Eden Caldas
Consultor de TI
ed...@linuxfacil.srv.br
(81) 9653 7220
LINUX FÁCIL – Consultoria e Serviços em TI


2011/6/22 Manu <manu...@manu-dpk.net>
Hello,
I'm French, I'm sorry for my bad english.
I'm a beginner debian user.
In my home network, I have a linux machine with debian6.
My debian has to do dhcp server with isc-server.
I have 2 network card, eth0 = public Ip (adsl modem)
eth1 = lan.
My dhcp server runs.
But I can't connect to internet with pc's.
Description :
 
network  : 10.20.30.0
mask : 255.255.255.0
Windows server: 10.20.30.2
Linux server (Debian6) : 10.20.30.1 (DHCP a    nd gateway to wan)
Accesspoint Wifi : 10.20.30.3
NAS server : 10.20.30.4
MAO PC: 10.20.30.5
laptop : 10.20.30.6
IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
I can connect to lan machines but not to wan.
 
cat /proc/sys/net/ipv4/ip_forward is 1
 
What are routes I have to create with route command ?
How can I routed 80 port to 10.20.30.1  with iptables ?
thank you for your help !
 

AMICALEMENT
Manu

SITES WEBS
Mon site web Officiel (Manu-dpk.net)
Ecoutez Radio DPK

CONTACT
- E-mail : manu...@manu-dpk.net
- Messenger (WLM) : m...@manu-dpk.net
- Skype : manu-dpk


PS : Pour le respect de l'environnnement, n'imprimez ce mail qu'en cas de nécessité.

 

Gerdriaan Mulder

unread,
Jun 22, 2011, 4:50:02 PM6/22/11
to
>> cat /proc/sys/net/ipv4/ip_forward is 1
>>
>> What are routes I have to create with route command ?
>
> Normally you shouldn't have to create any for that kind of setup.
4-step NAT, first step is to enable forwarding on the specific
interfaces, or ip_forward globally.
next three steps are iptables rules:
iptables -A FORWARD -i eth0 -o eth1 -m state --state
RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

Next step is to configure the DHCP-server to propagate the IP
addresses to the network. Send the gateway (10.20.30.1) with the DHCP
offer and your computers should be able to reach the internet.


--
To UNSUBSCRIBE, email to debian-fire...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org
Archive: http://lists.debian.org/BANLkTi=t27JZOTndtmnz...@mail.gmail.com

Eden Caldas

unread,
Jun 22, 2011, 5:00:01 PM6/22/11
to
Since it's a dsl maybe the interface is ppp0 ? Check if this interface comes up when you dial in.


Eden Caldas
Consultor de TI
ed...@linuxfacil.srv.br
(81) 9653 7220
LINUX FÁCIL – Consultoria e Serviços em TI


2011/6/22 Javier Charne <javi...@speedy.com.ar>
El 22/06/11 17:19, Manu escribió:
Hello,
I'm French, I'm sorry for my bad english.
I'm a beginner debian user.
In my home network, I have a linux machine with debian6.
My debian has to do dhcp server with isc-server.
I have 2 network card, eth0 = public Ip (adsl modem)
eth1 = lan.
My dhcp server runs.
But I can't connect to internet with pc's.
Description :
 
network  : 10.20.30.0
mask : 255.255.255.0
Windows server: 10.20.30.2
Linux server (Debian6) : 10.20.30.1 (DHCP a    nd gateway to wan)
Accesspoint Wifi : 10.20.30.3
NAS server : 10.20.30.4
MAO PC: 10.20.30.5
laptop : 10.20.30.6
IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
I can connect to lan machines but not to wan.
 
cat /proc/sys/net/ipv4/ip_forward is 1
 
What are routes I have to create with route command ?
How can I routed 80 port to 10.20.30.1  with iptables ?
thank you for your help !
 

Manu:

Check if 10.20.30.1 is default gateway for all devices in LAN.

In Debian Server, traffic to Internet must be nated:

iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE


Javier.-

Manu

unread,
Jun 22, 2011, 4:20:02 PM6/22/11
to
Hello,
I'm French, I'm sorry for my bad english.
I'm a beginner debian user.
In my home network, I have a linux machine with debian6.
My debian has to do dhcp server with isc-server.
I have 2 network card, eth0 = public Ip (adsl modem)
eth1 = lan.
My dhcp server runs.
But I can't connect to internet with pc's.
Description :
 
network  : 10.20.30.0
mask : 255.255.255.0
Windows server: 10.20.30.2
Linux server (Debian6) : 10.20.30.1 (DHCP a    nd gateway to wan)
Accesspoint Wifi : 10.20.30.3
NAS server : 10.20.30.4
MAO PC: 10.20.30.5
laptop : 10.20.30.6
IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
I can connect to lan machines but not to wan.
 
cat /proc/sys/net/ipv4/ip_forward is 1
 
What are routes I have to create with route command ?
How can I routed 80 port to 10.20.30.1  with iptables ?
thank you for your help !

Ansgar Wiechers

unread,
Jun 22, 2011, 4:50:02 PM6/22/11
to
On 2011-06-22 Manu wrote:
> In my home network, I have a linux machine with debian6.
> My debian has to do dhcp server with isc-server.
> I have 2 network card, eth0 = public Ip (adsl modem)
> eth1 = lan.
> My dhcp server runs.
> But I can't connect to internet with pc's.
> Description :
>
> network : 10.20.30.0
> mask : 255.255.255.0
> Windows server: 10.20.30.2
> Linux server (Debian6) : 10.20.30.1 (DHCP a nd gateway to wan)
> Accesspoint Wifi : 10.20.30.3
> NAS server : 10.20.30.4
> MAO PC: 10.20.30.5
> laptop : 10.20.30.6
> IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
> I can connect to lan machines but not to wan.

Do the hosts in your LAN have a default gateway, i.e. does your DHCP
server pass out a router option with the leases? Check with "ipconfig"
on Windows or "route" on Linux hosts.

> cat /proc/sys/net/ipv4/ip_forward is 1
>
> What are routes I have to create with route command ?

Normally you shouldn't have to create any for that kind of setup.

Please post the output of "iptables -nL" and "iptables -t nat -nL".

> How can I routed 80 port to 10.20.30.1 with iptables ?

That is called port-forwarding, not routing. It's done via DNAT. See [1]
for instance.

[1] http://www.debian-administration.org/articles/73

Regards
Ansgar Wiechers
--
"All vulnerabilities deserve a public fear period prior to patches
becoming available."
--Jason Coombs on Bugtraq


--
To UNSUBSCRIBE, email to debian-fire...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/20110622203...@mail.planetcobalt.net

Pascal Hambourg

unread,
Jun 22, 2011, 4:50:02 PM6/22/11
to
Hello,

Manu a ᅵcrit :


>
> Hello,
> I'm French, I'm sorry for my bad english.

You'd better be sorry for posting HTML.

> I'm a beginner debian user.
> In my home network, I have a linux machine with debian6.
> My debian has to do dhcp server with isc-server.
> I have 2 network card, eth0 = public Ip (adsl modem)
> eth1 = lan.
> My dhcp server runs.
> But I can't connect to internet with pc's.
> Description :
>
> network : 10.20.30.0
> mask : 255.255.255.0
> Windows server: 10.20.30.2
> Linux server (Debian6) : 10.20.30.1 (DHCP a nd gateway to wan)
> Accesspoint Wifi : 10.20.30.3
> NAS server : 10.20.30.4
> MAO PC: 10.20.30.5
> laptop : 10.20.30.6
> IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
> I can connect to lan machines but not to wan.
>
> cat /proc/sys/net/ipv4/ip_forward is 1
>
> What are routes I have to create with route command ?

Probably none. But maybe you missed the masquerading.

iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

> How can I routed 80 port to 10.20.30.1 with iptables ?

If you mean port forwarding of connections coming from outside :

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 \
-j DNAT --to 10.20.30.1

But as 10.20.30.1 is the box itself, this is probably not what you want.


--
To UNSUBSCRIBE, email to debian-fire...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/4E02535A...@plouf.fr.eu.org

lee

unread,
Jun 22, 2011, 5:20:02 PM6/22/11
to
"Manu" <manu...@manu-dpk.net> writes:

Have you tried shorewall? It has sufficient documentation and should
make it pretty easy to achieve the setup you need, with the added
benefit of providing a fully featured firewall.

Setting up a firewall is probably much better than connecting your
networks to the internet directly without one through your ADSL
modem. It will also help you to redirect some traffic on port 80 to
10.20.30.1 and to do the neccessary masquerading.

However, I would start with setting up a name server for your networks
if you´ve not already done so.

> --------------------------------------------------------------------------------


>
> AMICALEMENT
> Manu
>
> SITES WEBS
> Mon site web Officiel (Manu-dpk.net)
> Ecoutez Radio DPK
>
> CONTACT
> - E-mail : manu...@manu-dpk.net
> - Messenger (WLM) : m...@manu-dpk.net
> - Skype : manu-dpk
>
>
>

> --------------------------------------------------------------------------------


>
>
> PS : Pour le respect de l'environnnement, n'imprimez ce mail qu'en cas de nécessité.

Can you please use the standard seperator ("-- ") for your signature and
refrain from posting HTML messages?


--
To UNSUBSCRIBE, email to debian-fire...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87hb7hk...@yun.yagibdah.de

Javier Charne

unread,
Jun 22, 2011, 5:00:02 PM6/22/11
to
El 22/06/11 17:19, Manu escribió:
Hello,
I'm French, I'm sorry for my bad english.
I'm a beginner debian user.
In my home network, I have a linux machine with debian6.
My debian has to do dhcp server with isc-server.
I have 2 network card, eth0 = public Ip (adsl modem)
eth1 = lan.
My dhcp server runs.
But I can't connect to internet with pc's.
Description :
 
network  : 10.20.30.0
mask : 255.255.255.0
Windows server: 10.20.30.2
Linux server (Debian6) : 10.20.30.1 (DHCP a    nd gateway to wan)
Accesspoint Wifi : 10.20.30.3
NAS server : 10.20.30.4
MAO PC: 10.20.30.5
laptop : 10.20.30.6
IP phone : 10.20.30.7, 10.20.30.8, 10.20.30.9
I can connect to lan machines but not to wan.
 
cat /proc/sys/net/ipv4/ip_forward is 1
 
What are routes I have to create with route command ?
How can I routed 80 port to 10.20.30.1  with iptables ?
thank you for your help !
 
Manu:

Check if 10.20.30.1 is default gateway for all devices in LAN.

In Debian Server, traffic to Internet must be nated:
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE


Javier.-

Prithak Sharma

unread,
Jun 23, 2011, 3:10:02 AM6/23/11
to
Manu,

You need to enable Packet forwarding and NAT. Considering your network
architecture these commands may do the trick:

echo 1 > /proc/sys/net/ipv4/ip_forward

iptables -t filter -A FORWARD -s 10.20.30.0/24 -d 0/0 -j ACCEPT
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE

If you are using PPPoE then you will have to change eth1 to ppp0 for NAT.


To forward HTTP traffic (dst port 80) to your Linux box you will have
to use the following iptables rule :

iptables -t nat -A PREROUTING -i eth1 -s 10.20.30.0/24 -p tcp --dport
80 -j REDIRECT --to-ports 8080

You need to make sure that some kind of TCP service is listening on
port 8080 on your debian box . You can verify that using netstat
-tunlp command.

-Prithak
-http://prithak.blogspot.com

Archive: http://lists.debian.org/BANLkTikmVy3PVmu...@mail.gmail.com

Manu

unread,
Jun 23, 2011, 5:40:01 AM6/23/11
to
Hi,
Thank you for lot of reply
Wan protocole is IPoA. So I think I can keep eth0 ?
On my debian server, I have dhcp server (isc-dhcp-server), asterisk, apache, samba.
On my windows server, I have ftp server,, sam broadcaster...
I will try to route as you explain to me, and I will tell you later.
Thank you again
0 new messages