Layer-7 Packet Classifier for Linux 2.21 (Netfilter 2.4/2.6 patches branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Layer-7 Packet Classifier for Linux 2.21 (Netfilter 2.4/2.6 patches branch)
# 1  
Old 01-08-2009
Layer-7 Packet Classifier for Linux 2.21 (Netfilter 2.4/2.6 patches branch)

L7-filter is a packet classifier for Netfilter that identifies packets based on application layer (OSI layer 7) data. This means that it is able to classify packets as HTTP, FTP, Gnucleus, Kazaa, etc., regardless of ports. It complements existing matches that classify based on port numbers, packet length, TOS bits, and so on. Combined with Linux QoS, it allows for full layer 7 packet shaping. License: GNU General Public License (GPL) Changes:
Support for Linux 2.6.27 and 2.6.28 was added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. IP Networking

Network interface layer in Linux kernel

Dear all, lets say a linux based computer(debian) with ethernet,wifi, usb modem connected to the, linux kernel version is 3.3 Question: for each network device the network driver builds its own net_device struct and register itself with the network interface layer of the kernel. ... (1 Reply)
Discussion started by: nick_kd
1 Replies

2. Red Hat

Patches for Red Hat Linux

i am installing an application and i am getting this error message about patches Would you like to see system information? Operating System Information Name: Linux Architecture: i386 Version: 2.6.32-431.el6.x86_64 Required OS Patch Levels Passed Name ... (4 Replies)
Discussion started by: DOkuwa
4 Replies

3. AIX

Packet loss coming with big packet size ping

(5 Replies)
Discussion started by: Vishal_dba
5 Replies

4. AIX

List of Installed patches for AIX from given set of patches

I need to find out list of installed patches from given list of patches. I have tried using instfix -f <File containing list of patches> -i -c But I was not able to understand the output of this command. It was like below. bos.perf.tools: :0.0.0.0:?: bos.rte.libc: :0.0.0.0:?: ... (4 Replies)
Discussion started by: Saurabh Agrawal
4 Replies

5. UNIX for Dummies Questions & Answers

help me how to run the linux packet generator

goto google -> search for 'pktgen' -> click on the first link, you will get the setup information from linux foundation site.. i am new to the linux environment. so can anyone help me how to run the pktgen? the first few lines in these documentation are as follows, "Enable CONFIG_NET_PKTGEN... (3 Replies)
Discussion started by: routeme
3 Replies

6. Linux

Linux Patches

How do you determine the missing security patches on a Linux Server, I think in Solaris you could use showrev -p but unsure of the Linux alternative, or any tool to do this? (3 Replies)
Discussion started by: stevej123
3 Replies

7. UNIX for Advanced & Expert Users

Linux security patches

Hi all, :) I'm quite new with installation of security patches in Linux Redhat Enterprise, here's my question. I have 2 machine of this RHEL(never patch before) since it never connects directly to the internet(block by firewall) and I want to update the patches now because my boss asked me to... (1 Reply)
Discussion started by: flekzout
1 Replies

8. UNIX for Dummies Questions & Answers

Unix, Linux Patches

How are patches for vulnerabilities deployed for UNIX, and Linux? How are customers alerted of patches and updates for each company? Are the patches deployed automatically? Is there a certain day that they are deployed or ready for use? I have done several different kinds of search at... (3 Replies)
Discussion started by: purplebear
3 Replies

9. Linux

How to find and apply patches in RHAT linux?

Hi: This is an elementary qs. Thanks in advance, (4 Replies)
Discussion started by: bbose
4 Replies
Login or Register to Ask a Question
Firewall mark classifier in tc(8)                                      Linux                                     Firewall mark classifier in tc(8)

NAME
fw - fwmark traffic control filter SYNOPSIS
tc filter ... fw [ classid CLASSID ] [ action ACTION_SPEC ] DESCRIPTION
the fw filter allows to classify packets based on a previously set fwmark by iptables. If it is identical to the filter's handle, the fil- ter matches. iptables allows to mark single packets with the MARK target, or whole connections using CONNMARK. The benefit of using this filter instead of doing the heavy-lifting with tc itself is that on one hand it might be convenient to keep packet filtering and classifi- cation in one place, possibly having to match a packet just once, and on the other users familiar with iptables but not tc will have a less hard time adding QoS to their setups. OPTIONS
classid CLASSID Push matching packets to the class identified by CLASSID. action ACTION_SPEC Apply an action from the generic actions framework on matching packets. EXAMPLES
Take e.g. the following tc filter statement: tc filter add ... handle 6 fw classid 1:1 will match if the packet's fwmark value is 6. This is a sample iptables statement marking packets coming in on eth0: iptables -t mangle -A PREROUTING -i eth0 -j MARK --set-mark 6 SEE ALSO
tc(8), iptables(8), iptables-extensions(8) iproute2 21 Oct 2015 Firewall mark classifier in tc(8)