All of lore.kernel.org
 help / color / mirror / Atom feed
* comments about local loopback interface rule granularity
@ 2012-03-13 14:28 paddy joesoap
  2012-03-13 15:06 ` Jan Engelhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: paddy joesoap @ 2012-03-13 14:28 UTC (permalink / raw)
  To: netfilter

Hi all,

What is the correct local loopback iptables rules for a single hosted
firewall (laptop)?

I often see the following:

iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

where a default DROP policy is applied to both INPUT and OUTPUT chains.

I notice with this configuration I can ping the localhost (as
expected) but I also can ping the local IP address of the machine!

Why is this this the case with respect to the local IP address?

Is this the correct set of rules?

iptables -A INPUT -i lo -s 127.0.0.1 -j ACCEPT
iptables -A OUTPUT -o lo -d 127.0.0.1 -j ACCEPT

With this configuration I can ping the localhost (as expected) but NOT
also ping the local IP address of the machine :-)
The loacal IP address of the machine is tied to a real interface such
as eth0 and therefore no ping packets this time as expected.

I presume the only traffic that should ever communicate with the "lo"
interface is traffic to and from IP address 127.0.0.1.

any comments are welcome.
Paddy.

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

end of thread, other threads:[~2012-03-13 15:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-13 14:28 comments about local loopback interface rule granularity paddy joesoap
2012-03-13 15:06 ` Jan Engelhardt
2012-03-13 15:11 ` /dev/rob0
2012-03-13 15:17 ` Gáspár Lajos

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.