[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.7

iptables for bridge

Asked by skywalker7 in IP Tables/IP Chains, Linux Network Security

Tags: iptables for bidge

I would like to filter some traffic on bridge br0, the traffic flows from eth0 to eth1.  If using bridge in not possible then i can do routing where all traffic is needed to flow from eth0 to eth1. Or i can put the box as gateway, but need no nat.

iptables -F
iptables -t nat -F
iptables -t mangle -F

# Set policies
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT
iptables -P INPUT DROP

#Stateful
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

########################
#Limiting the incoming icmp ping request:
iptables -A INPUT -p icmp -m limit --limit 6/s --limit-burst 10 -j ACCEPT
iptables -A INPUT -p icmp -m limit --limit 3/s --limit-burst 5 -j LOG --log-prefix PING-DROP: --log-level 7
iptables -A INPUT -p icmp -j DROP

iptables -A OUTPUT -p icmp -j ACCEPT
########################
iptables -A FORWARD -p icmp --icmp-type echo-request -m length --length 92 -j DROP

# Local
iptables -A INPUT -i lo -j ACCEPT

#BLOCK SASSER
iptables -A FORWARD -p tcp -m tcp --dport 445 --tcp-flags SYN,RST,ACK SYN -j DROP
iptables -A INPUT -p tcp -m tcp --dport 445 --tcp-flags SYN,RST,ACK SYN -j DROP
iptables -A INPUT -p tcp -m tcp --dport 445 -j DROP
iptables -A FORWARD -p tcp -m tcp --dport 445 -j DROP
iptables -A FORWARD -p tcp -m tcp --sport 445 -j DROP

#NetBIOS
iptables -A FORWARD -p tcp -m tcp --dport 132:139 --tcp-flags SYN,RST,ACK SYN -j DROP
iptables -A FORWARD -p tcp -m tcp --sport 132:139 --tcp-flags SYN,RST,ACK SYN -j DROP
iptables -A FORWARD -p tcp -m tcp --dport 132:139 -j DROP
iptables -A FORWARD -p tcp -m tcp --sport 132:139 -j DROP

#ms-sql worm
iptables -A FORWARD -p udp --dport 1434 -j DROP
iptables -A FORWARD -p udp --sport 1434 -j DROP
iptables -A FORWARD -p udp --dport 1433 -j DROP
iptables -A FORWARD -p udp --sport 1433 -j DROP

# libpcap/tcpdump trojan
iptables -A FORWARD -p udp -m udp --sport 1963 -j DROP
iptables -A FORWARD -p tcp -m tcp --sport 1963 -j DROP

#BLOCK PRIVATE
iptables -I OUTPUT -d 224.0.0.0/4 -j REJECT
iptables -I OUTPUT -d 240.0.0.0/5 -j REJECT

iptables -I FORWARD -d 224.0.0.0/4 -j REJECT
iptables -I FORWARD -d 240.0.0.0/5 -j REJECT

[+][-]11/01/09 01:33 AM, ID: 25713116Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/01/09 01:48 AM, ID: 25713143Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/01/09 03:04 AM, ID: 25713291Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/01/09 05:09 AM, ID: 25713601Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/01/09 09:13 AM, ID: 25714399Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/01/09 09:16 AM, ID: 25714407Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/02/09 12:01 AM, ID: 25717661Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/02/09 12:07 AM, ID: 25717677Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/02/09 03:31 AM, ID: 25718503Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: IP Tables/IP Chains, Linux Network Security
Tags: iptables for bidge
Sign Up Now!
Solution Provided By: Blaz
Participating Experts: 1
Solution Grade: A
 
[+][-]11/03/09 08:51 AM, ID: 25730906Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 09:42 AM, ID: 25731449Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625