All of lore.kernel.org
 help / color / mirror / Atom feed
* clearing basics: semi-OT
@ 2003-04-10  8:06 Payal Rathod
  2003-04-10 14:21 ` Joel Newkirk
  2003-04-10 15:21 ` Kim Jensen
  0 siblings, 2 replies; 5+ messages in thread
From: Payal Rathod @ 2003-04-10  8:06 UTC (permalink / raw)
  To: netfilter

Hi,
I am trying to clear some of my basics. I am reading IP-Masquerading HOWTO. 
In it these things were mentioned,

UNIVERSE="0.0.0.0/0"
$IPTABLES -A INPUT -i lo -s $UNIVERSE -d $UNIVERSE -j ACCEPT

What exactly does 0.0.0.0/0 mean? And why should we be concerned with
it? And what is the use of rule given after it?

INTNET="192.168.1.0/24"
INTIP="192.168.1.1/24"

The first one means the entire network of 192.168.1.x? What exactly is
the second one. Does it just means 192.168.1.1 then why "/24"?
And lastly,

$IPTABLES -N drop-and-log-it
$IPTABLES -A drop-and-log-it -j DROP

Why was this rule made? And why was it "dropped"? What is the logic
behind this? Shouldn't it be,
$IPTABLES -P drop-and-log-it DROP


Thanks a lot for the patience and bye.
With warm regards,
-Payal

p.s please make a cc to me too.

-- 
"Visit GNU/Linux Success Stories"
www.geocities.com/rpayal99
Guest-Book Section Updated.


^ permalink raw reply	[flat|nested] 5+ messages in thread
* RE: clearing basics: semi-OT
@ 2003-04-10 14:17 dhiraj.2.bhuyan
  0 siblings, 0 replies; 5+ messages in thread
From: dhiraj.2.bhuyan @ 2003-04-10 14:17 UTC (permalink / raw)
  To: linux, netfilter

Answers inline -

> Hi,
> I am trying to clear some of my basics. I am reading IP-Masquerading
HOWTO. 
> In it these things were mentioned,

> UNIVERSE="0.0.0.0/0"
> $IPTABLES -A INPUT -i lo -s $UNIVERSE -d $UNIVERSE -j ACCEPT

> What exactly does 0.0.0.0/0 mean? And why should we be concerned with

sending 0.0.0.0 is a standard way of asking for a dhcp address. 


> it? And what is the use of rule given after it?

read iptables manpage (-i interface -s source -d destination)

> INTNET="192.168.1.0/24"
> INTIP="192.168.1.1/24"

> The first one means the entire network of 192.168.1.x? What exactly is
> the second one. Does it just means 192.168.1.1 then why "/24"?

192.168.1.0/24 is the subnet (/24 is the subnet mast - can also be
represented by 255.255.255.0)
similarly the 192.168.1.1/24

> And lastly,

> $IPTABLES -N drop-and-log-it
> $IPTABLES -A drop-and-log-it -j DROP

-N adds a new chain
-A appends a rule

> Why was this rule made? And why was it "dropped"? What is the logic
> behind this? Shouldn't it be,
> $IPTABLES -P drop-and-log-it DROP

Can't see any logic unless you show how this chain is hooked to the default
chains.


> Thanks a lot for the patience and bye.
> With warm regards,
> -Payal

> p.s please make a cc to me too.


dhiraj


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

end of thread, other threads:[~2003-04-14 13:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-10  8:06 clearing basics: semi-OT Payal Rathod
2003-04-10 14:21 ` Joel Newkirk
2003-04-14 13:50   ` Payal Rathod
2003-04-10 15:21 ` Kim Jensen
  -- strict thread matches above, loose matches on Subject: below --
2003-04-10 14:17 dhiraj.2.bhuyan

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.