ok I'm trying to make a simple firewall that will keep everything out of my computer (for now, until I figure out how to make more rules). Here is what I have....
I'm trying to get lots of "Stealth" ports on "ShieldsUP!", because 70% of my first 1056 ports are open to anything
-A INPUT -i lo -j ACCEPT
-A INPUT -p tcp --source-port 1:1056 -j DROP
-A INPUT -p udp --source-port 1:1056 -j DROP
-A INPUT -p tcp --destination-port 1:1056 -j DROP
-A INPUT -p udp --destination-port 1:1056 -j DROP
-A OUTPUT -j ACCEPT
-A FORWARD -j ACCEPT
In theory, what should this do?
I also want to know how to block ICMP stuff from going into my ports, there is also more stuff in my iptables that was written for me by a GUI, I dont know what it means it's stuff like
:INPUT DROP [0:0]
:PREROUTING ADDRESS [45635:8144121]
etc etc
What does it mean, and how do I make a firewall that actually DOES something? I'm getting mad because I'm googling my ass off and I can't make anything happen