Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iptables...they can see my hard drive

Status
Not open for further replies.

Trekkie

Technical User
Apr 29, 2000
150
CA
Hi,

I'm using iptable as my firewall/router. I went to those website ( that checks your anonymity and they displayed my entire C drive on the website. Which port do I need to close in order to prevent this from happening? I want to block it at the firewall.

I don't want to disable my javascripts or JVM because that's only protects only one machine.

my firewall script

modprobe iptable_nat
myiptable=/sbin/iptables
$myiptable -t nat -A POSTROUTING -o eth0 -j MASQUERADE
$myiptable -A INPUT -i eth0 -p tcp --dport 0:60000 -j DROP
$myiptable -A INPUT -p tcp --tcp-flags SYN,ACK,FIN SYN -j DROP
$myiptable -A INPUT -i eth0 -p udp --dport 0:60000 -j DROP
$myiptable -A INPUT -i eth0 -p icmp -j DROP

Thanks for any advice

T.

%-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top