search for: shorewall_doesnt

Displaying 5 results from an estimated 5 matches for "shorewall_doesnt".

2005 Apr 03
2
Allowing ports selectively
Dear All Is shorewall able to open selectively a port for a specific program and not to all programs installed? If so, where from can one get the appropriate documentation? Thanks in advance, Paul
2004 Nov 01
2
does shorewall support more advance features of netfilter ?
e.g. string-matching CodeRed or Nimda viruses before they hit your Web server. The following rules achieve this: # DROP HTTP packets related to CodeRed and Nimda # viruses silently iptables -t filter -A INPUT -i $EXT_IFACE -p tcp \ -d $IP --dport http -m string \ --string "/default.ida?" -j DROP iptables -t filter -A INPUT -i $EXT_IFACE -p tcp \ -d $IP --dport http -m string \
2003 Dec 14
22
White space being removed from "Programlisting" elements
Good Morning Mike, I''m finding that when I load a document, XXE is blindly removing all "superfluous" white space from "programlisting" elements. This of course is leading to a real mess (check out the FAQ on the web site :-( ). What can I do to avoid this? -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \
2003 Dec 10
40
DocBook XML conversion progress
Everyone, Progress was slow today. I started out well, but then I ran into Documentation.htm. Progress slowed considerably, as I analyzed the document structure. I''m up to /etc/shorewall/hosts Configuration. I hope to finish Documentation.xml by tomorrow evening. Converted documents: 6to4.xml CorpNetwork.xml FAQ.xml Please post feedback, if you see any problems with the converted
2004 Sep 30
12
Block domains with Shorewall
Hi, like implementing this script with shorewall? -------------------------------------------- #!/bin/sh dig ads.web.aol.com | grep "ads." | grep -v \; | grep -v \< | cut -f5 | while read aolblock1; do iptables -A OUTPUT -p all --destination $aolblock1 -j DROP done --------------------------------------- Thanks, Aventino Faria