You generally want to rest your firewall from outside your firewall -- I would suggest nmap. Tell it to do agressive scans, fingerprinting, etc. and see what you can see. Fix any problems that arise. Lather, rinse, repeat.Qubax wrote: does somebody know a light program that tells my where a still have a security hole (don't want nessus - seems to be quit a big download and i just want to test my firewall)
Code: Select all
iptables -N RULE_2
iptables -A INPUT -j RULE_2
iptables -A RULE_2 -j LOG --log-level info --log-prefix "RULE 2 -- REJECT "
iptables -A RULE_2 -j REJECT --reject-with icmp-host-prohibited Code: Select all
iptables -N RULE_1
iptables -A INPUT -p udp -m multiport --destination-port 138,137,139,69 -j RULE_1
iptables -A RULE_1 -j LOG --log-level info --log-prefix "RULE 1 -- REJECT "
iptables -A RULE_1 -j REJECT --reject-with icmp-host-prohibited