]> Kevux Git Server - fll/commitdiff
Update: oops! don't block unicasts by default
authorKevin Day <thekevinday@gmail.com>
Wed, 14 Jan 2015 04:57:48 +0000 (22:57 -0600)
committerKevin Day <thekevinday@gmail.com>
Wed, 14 Jan 2015 04:57:48 +0000 (22:57 -0600)
Whoops, I overlooked that unicast was the name for the normal, expected, behavior of standard point to point network connections.

level_3/firewall/data/settings/firewall-first

index 5db789b29c5f95841ffa9439a91268870b33255a..788de35308c80ec9d86e35ca0d11bad0af946870 100644 (file)
@@ -44,14 +44,15 @@ main:
 
 
   # Drop multicasts and broadcasts, they should not exist for a router and in most cases should be avoided.
+  # unicasts are the normal behavior and blocking them would be very unusual.
   direction output
   rule -m pkttype --pkt-type broadcast -j output-casting
   rule -m pkttype --pkt-type multicast -j output-casting
-  rule -m pkttype --pkt-type unicast -j output-casting
+  #rule -m pkttype --pkt-type unicast -j output-casting
   direction input
   rule -m pkttype --pkt-type broadcast -j input-casting
   rule -m pkttype --pkt-type multicast -j input-casting
-  rule -m pkttype --pkt-type unicast -j input-casting
+  #rule -m pkttype --pkt-type unicast -j input-casting
 
 
   # Allow ALL input&output connections that have already been established by this host (using conntrack might be more efficient)