summaryrefslogtreecommitdiff
path: root/etc
AgeCommit message (Collapse)Author
2015-02-17pktloc: fix typo for tcp.flag.synThomas Haller
http://lists.infradead.org/pipermail/libnl/2015-February/001829.html http://lists.infradead.org/pipermail/libnl/2015-February/001830.html Reported-by: Georgi Chulkov <georgi@guinpen.eu> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Thomas Haller <thaller@redhat.com>
2010-11-04pktloc: support to specify a shift operator for packet locationsThomas GraF
no users yet though.
2010-11-01classid auto generation if provided tc name does not existThomas Graf
Manually editing etc/libnl/classid before adding tc objects is a pain. This patch adds code to attempt auto generating a unique tc id which will then be assigned to the provided name and added to the classid file. This will make the following commands work with prior definitions of the names "top" and "test" sudo sbin/nl-qdisc-add --dev eth0 --parent root --id top htb sudo sbin/nl-class-add --dev eth0 --parent top --id test htb --rate 100mbit It will generate the following ids automatically: 4001: top 4001:1 test
2010-10-29Extended pktloc to support nbyte locations for ipv6, etc.Thomas Graf
The alignment column/field now also takes a number, specifying the length in bytes of the field described by the location
2010-10-19classid databaseThomas Graf
A database to resolve qdisc/class names to classid values and vice versa. The function rtnl_tc_handle2str() and rtnl_tc_str2handle() will resolve names automatically. A CLI based tool nl-classid-lookup is provided to integrate the database into existing iproute2 scripts.
2010-07-02Packet Location InterfaceThomas Graf