From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarek Poplawski Date: Thu, 10 Aug 2006 13:38:54 +0000 Subject: [LARTC] Re: tc filter Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: lartc@vger.kernel.org On 03-08-2006 18:06, doudouyam wrote: > Hi, > Is it possible to make a filter with tc which exclude an IP like iptables ?? > > ex: > iptable -t mangle -A PREROUTING -i eth0 -d ! 192.168.1.222 > -j MARK ... Maybe there is something like this, I don't know, but you can try two filters in turn e.g.: # tc filter add dev eth0 parent 1: proto ip pref 100 \ u32 match ip dst 192.168.1.222 police drop (or some other "flowid 1:xx" instead of "police drop") # tc filter add dev eth0 parent 1: proto ip pref 101 \ u32 match ip dst 192.168.1.0/24 flowid 1:99 Jarek P. _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc