#!/bin/bash # # cbq.init v0.7.3 # Copyright (C) 1999 Pavel Golubev <pg@ksi-linux.com> # Copyright (C) 2001-2004 Lubomir Bulej <pallas@kadan.cz> # # chkconfig: 2345 11 89 # description: sets up CBQ-based traffic control # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see <http://www.gnu.org/licenses/>. # # To get the latest version, check on Freshmeat for actual location: # # http://freshmeat.net/projects/cbq.init # # # VERSION HISTORY # --------------- # v0.7.3- Deepak Singhal <singhal at users.sourceforge.net> # - fix timecheck to not ignore regular TIME rules after # encountering a TIME rule that spans over midnight # - Nathan Shafer <nicodemus at users.sourceforge.net> # - allow symlinks to class files # - Seth J. Blank <antifreeze at users.sourceforge.net> # - replace hardcoded ip/tc location with variables # - Mark Davis <mark.davis at gmx.de> # - allow setting of PRIO_{MARK,RULE,REALM} in class file # - Fernando Sanch <toptnc at users.sourceforge.net> # - allow underscores in interface names # v0.7.2- Paulo Sedrez # - fix time2abs to allow hours with leading zero in TIME rules # - Svetlin Simeonov <zvero at yahoo.com> # - fix cbq_device_list to allow VLAN interfaces # - Mark Davis <mark.davis at gmx.de> # - ignore *~ backup files when looking for classes # - Mike Boyer <boyer at administrative.com> # - fix to allow arguments to be passed to "restart" command # v0.7.1- Lubomir Bulej <pallas at kadan.cz> # - default value for PERTURB # - fixed small bug in RULE parser to correctly parse rules with # identical source and destination fields # - faster initial scanning of DEVICE fields # v0.7 - Lubomir Bulej <pallas at kadan.cz> # - lots of various cleanups and reorganizations; the parsing is now # some 40% faster, but the class ID must be in range 0x0002-0xffff # (again). Because of the number of internal changes and the above # class ID restriction, I bumped the version to 0.7 to indicate # something might have got broken :) # - changed PRIO_{U32,FW,ROUTE} to PRIO_{RULE,MARK,REALM} # for consistency with filter keywords # - exposed "compile" command # - Catalin Petrescu <taz at dntis.ro> # - support for port masks in RULE (u32) filter # - Jordan Vrtanoski <obeliks at mt.net.mk> # - support for week days in TIME rules # v0.6.4- Lubomir Bulej <pallas at kadan.cz> # - added PRIO_* variables to allow easy control of filter priorities # - added caching to speed up CBQ start, the cache is invalidated # whenever any of the configuration files changes # - updated the readme section + some cosmetic fixes # v0.6.3- Lubomir Bulej <pallas at kadan.cz> # - removed setup of (unnecessary) class 1:1 - all classes # now use qdisc's default class 1:0 as their parent # - minor fix in the timecheck branch - classes # without leaf qdisc were not updated # - minor fix to avoid timecheck failure when run # at time with minutes equal to 08 or 09 # - respect CBQ_PATH setting in environment # - made PRIO=5 default, rendering it optional in configs # - added support for route filter, see notes about REALM keyword # - added support for fw filter, see notes about MARK keyword # - added filter display to "list" and "stats" commands # - readme section update + various cosmetic fixes # v0.6.2- Catalin Petrescu <taz at dntis.ro> # - added tunnels interface handling # v0.6.1- Pavel Golubev <pg at ksi-linux.com> # - added sch_prio module loading # (thanks johan at iglo.virtual.or.id for reminding) # - resolved errors resulting from stricter syntax checking in bash2 # - Lubomir Bulej <pallas at kadan.cz> # - various cosmetic fixes # v0.6 - Lubomir Bulej <pallas at kadan.cz> # - attempt to limit number of spawned processes by utilizing # more of sed power (use sed instead of grep+cut) # - simplified TIME parser, using bash builtins # - added initial support for SFQ as leaf qdisc # - reworked the documentation part a little # - incorporated pending patches and ideas submitted by # following people for versions 0.3 into version 0.6 # - Miguel Freitas <miguel at cetuc.puc-rio.br> # - in case of overlapping TIME parameters, the last match is taken # - Juanjo Ciarlante <jjo at mendoza.gov.ar> # - chkconfig tags, list + stats startup parameters # - optional tc & ip command logging (into /var/run/cbq-*) # - Rafal Maszkowski <rzm at icm.edu.pl> # - PEAK parameter for setting TBF's burst peak rate # - fix for many config files (use find instead of ls) # v0.5.1- Lubomir Bulej <pallas at kadan.cz> # - fixed little but serious bug in RULE parser # v0.5 - Lubomir Bulej <pallas at kadan.cz> # - added options PARENT, LEAF, ISOLATED and BOUNDED. This allows # (with some attention to config file ordering) for creating # hierarchical structures of shapers with classes able (or unable) # to borrow bandwidth from their parents. # - class ID check allows hexadecimal numbers # - rewritten & simplified RULE parser # - cosmetic changes to improve readability # - reorganization to avoid duplicate code (timecheck etc.) # - timecheck doesn't check classes without TIME fields anymore # v0.4 - Lubomir Bulej <pallas at kadan.cz> # - small bugfix in RULE parsing code # - simplified configuration parsing code # - several small cosmetic changes # - TIME parameter can be now specified more than once allowing you to # differentiate RATE throughout the whole day. Time overlapping is # not checked, first match is taken. Midnight wrap (eg. 20:00-6:00) # is allowed and taken care of. # v0.3a4- fixed small bug in IF operator. Thanks to # Rafal Maszkowski <rzm at icm.edu.pl> # v0.3a3- fixed grep bug when using more than 10 eth devices. Thanks to David # Trcka <trcka at poda.cz>. # v0.3a2- fixed bug in "if" operator. Thanks kad at dgtu.donetsk.ua. # v0.3a - added TIME parameter. Example: TIME=00:00-19:00;64Kbit/6Kbit # So, between 00:00 and 19:00 the RATE will be 64Kbit. # Just start "cbq.init timecheck" periodically from cron # (every 10 minutes for example). DON'T FORGET though, to run # "cbq.init start" for CBQ to initialize. # v0.2 - Some cosmetic changes. Now it is more compatible with old bash # version. Thanks to Stanislav V. Voronyi <stas at cnti.uanet.kharkov.ua>. # v0.1 - First public release # # # README # ------ # # First of all - this is just a SIMPLE EXAMPLE of CBQ power. # Don't ask me "why" and "how" :) # # This script is meant to simplify setup and management of relatively simple # CBQ-based traffic control on Linux. Access to advanced networking features # of Linux kernel is provided by "ip" and "tc" utilities from A. Kuznetsov's # iproute2 package, available at ftp://ftp.inr.ac.ru/ip-routing. Because the # utilities serve primarily to translate user wishes to RTNETLINK commands, # their interface is rather spartan, intolerant and requires quite a lot of # typing. And typing is what this script attempts to reduce :) # # The advanced networking stuff in Linux is pretty flexible and this script # aims to bring some of its features to the not-so-hard-core Linux users. Of # course, there is a tradeoff between simplicity and flexibility and you may # realize that the flexibility suffered too much for your needs -- time to # face "ip" and "tc" interface. # # To speed up the "start" command, simple caching was introduced in version # 0.6.4. The caching works so that the sequence of "tc" commands for given # configuration is stored in a file (/var/cache/cbq.init by default) which # is used next time the "start" command is run to avoid repeated parsing of # configuration files. This cache is invalidated whenever any of the CBQ # configuration files changes. If you want to run "cbq.init start" without # caching, run it as "cbq.init start nocache". If you want to force cache # invalidation, run it as "cbq.init start invalidate". Caching is disabled # if you have logging enabled (ie. CBQ_DEBUG is not empty). # # If you only want cqb.init to translate your configuration to "tc" commands, # use "compile" command which will output "tc" commands required to build # your configuration. Bear in mind that "compile" does not check if the "tc" # commands were successful - this is done (in certain places) only when the # "start nocache" command is used, which is also useful when creating the # configuration to check whether it is completely valid. # # All CBQ parameters are valid for Ethernet interfaces only, The script was # tested on various Linux kernel versions from series 2.1 to 2.4 and several # distributions with KSI Linux (Nostromo version) as the premier one. # # # HOW DOES IT WORK? # ----------------- # # Every traffic class must be described by a file in the $CBQ_PATH directory # (/etc/sysconfig/cbq by default) - one file per class. # # The config file names must obey mandatory format: cbq-<clsid>.<name> where # <clsid> is two-byte hexadecimal number in range <0002-FFFF> (which in fact # is a CBQ class ID) and <name> is the name of the class -- anything to help # you distinguish the configuration files. For small amount of classes it is # often possible (and convenient) to let <clsid> resemble bandwidth of the # class. # # Example of valid config name: # cbq-1280.My_first_shaper # # # The configuration file may contain the following parameters: # ### Device parameters # # DEVICE=<ifname>,<bandwidth>[,<weight>] mandatory # DEVICE=eth0,10Mbit,1Mbit # # <ifname> is the name of the interface you want to control # traffic on, e.g. eth0 # <bandwidth> is the physical bandwidth of the device, e.g. for # ethernet 10Mbit or 100Mbit, for arcnet 2Mbit # <weight> is tuning parameter that should be proportional to # <bandwidth>. As a rule of thumb: <weight> = <bandwidth> / 10 # # When you have more classes on one interface, it is enough to specify # <bandwidth> [and <weight>] only once, therefore in other files you only # need to set DEVICE=<ifname>. # ### Class parameters # # RATE=<speed> mandatory # RATE=5Mbit # # Bandwidth allocated to the class. Traffic going through the class is # shaped to conform to specified rate. You can use Kbit, Mbit or bps, # Kbps and Mbps as suffices. If you don't specify any unit, bits/sec # are used. Also note that "bps" means "bytes per second", not bits. # # WEIGHT=<speed> mandatory # WEIGHT=500Kbit # # Tuning parameter that should be proportional to RATE. As a rule # of thumb, use WEIGHT ~= RATE / 10. # # PRIO=<1-8> optional, default 5 # PRIO=5 # # Priority of class traffic. The higher the number, the lesser # the priority. Priority of 5 is just fine. # # PARENT=<clsid> optional, default not set # PARENT=1280 # # Specifies ID of the parent class to which you want this class be # attached. You might want to use LEAF=none for the parent class as # mentioned below. By using this parameter and carefully ordering the # configuration files, it is possible to create simple hierarchical # structures of CBQ classes. The ordering is important so that parent # classes are constructed prior to their children. # # LEAF=none|tbf|sfq optional, default "tbf" # # Tells the script to attach specified leaf queueing discipline to CBQ # class. By default, TBF is used. Note that attaching TBF to CBQ class # shapes the traffic to conform to TBF parameters and prevents the class # from borrowing bandwidth from its parent even if you have BOUNDED set # to "no". To allow the class to borrow bandwith (provided it is not # bounded), you must set LEAF to "none" or "sfq". # # If you want to ensure (approximately) fair sharing of bandwidth among # several hosts in the same class, you might want to specify LEAF=sfq to # attach SFQ as leaf queueing discipline to that class. # # BOUNDED=yes|no optional, default "yes" # # If set to "yes", the class is not allowed to borrow bandwidth from # its parent class in overlimit situation. If set to "no", the class # will be allowed to borrow bandwidth from its parent. # # Note: Don't forget to set LEAF to "none" or "sfq", otherwise the class will # have TBF attached to itself and will not be able to borrow unused # bandwith from its parent. # # ISOLATED=yes|no optional, default "no" # # If set to "yes", the class will not lend unused bandwidth to # its children. # ### TBF qdisc parameters # # BUFFER=<bytes>[/<bytes>] optional, default "10Kb/8" # # This parameter controls the depth of the token bucket. In other # words it represents the maximal burst size the class can send. # The optional part of parameter is used to determine the length # of intervals in packet sizes, for which the transmission times # are kept. # # LIMIT=<bytes> optional, default "15Kb" # # This parameter determines the maximal length of backlog. If # the queue contains more data than specified by LIMIT, the # newly arriving packets are dropped. The length of backlog # determines queue latency in case of congestion. # # PEAK=<speed> optional, default not set # # Maximal peak rate for short-term burst traffic. This allows you # to control the absolute peak rate the class can send at, because # single TBF that allows 256Kbit/s would of course allow rate of # 512Kbit for half a second or 1Mbit for a quarter of second. # # MTU=<bytes> optional, default "1500" # # Maximum number of bytes that can be sent at once over the # physical medium. This parameter is required when you specify # PEAK parameter. It defaults to MTU of ethernet - for other # media types you might want to change it. # # Note: Setting TBF as leaf qdisc will effectively prevent the class from # borrowing bandwidth from the ancestor class, because even if the # class allows more traffic to pass through, it is then shaped to # conform to TBF. # ### SFQ qdisc parameters # # The SFQ queueing discipline is a cheap way for sharing class bandwidth # among several hosts. As it is stochastic, the fairness is approximate but # it will do the job in most cases. If you want real fairness, you should # probably use WRR (weighted round robin) or WFQ queueing disciplines. Note # that SFQ does not do any traffic shaping - the shaping is done by the CBQ # class the SFQ is attached to. # # QUANTUM=<bytes> optional, default not set # # This parameter should not be set lower than link MTU, for ethernet # it is 1500b, or (with MAC header) 1514b which is the value used # in Alexey Kuznetsov's examples. # # PERTURB=<seconds> optional, default "10" # # Period of hash function perturbation. If unset, hash reconfiguration # will never take place which is what you probably don't want. The # default value of 10 seconds is probably a good one. # ### Filter parameters # # RULE=[[saddr[/prefix]][:port[/mask]],][daddr[/prefix]][:port[/mask]] # # These parameters make up "u32" filter rules that select traffic for # each of the classes. You can use multiple RULE fields per config. # # The optional port mask should only be used by advanced users who # understand how the u32 filter works. # # Some examples: # # RULE=10.1.1.0/24:80 # selects traffic going to port 80 in network 10.1.1.0 # # RULE=10.2.2.5 # selects traffic going to any port on single host 10.2.2.5 # # RULE=10.2.2.5:20/0xfffe # selects traffic going to ports 20 and 21 on host 10.2.2.5 # # RULE=:25,10.2.2.128/26:5000 # selects traffic going from anywhere on port 50 to # port 5000 in network 10.2.2.128 # # RULE=10.5.5.5:80, # selects traffic going from port 80 of single host 10.5.5.5 # # # # REALM=[srealm,][drealm] # # These parameters make up "route" filter rules that classify traffic # according to packet source/destination realms. For information about # realms, see Alexey Kuznetsov's IP Command Reference. This script # does not define any realms, it justs builds "tc filter" commands # for you if you need to classify traffic this way. # # Realm is either a decimal number or a string referencing entry in # /etc/iproute2/rt_realms (usually). # # Some examples: # # REALM=russia,internet # selects traffic going from realm "russia" to realm "internet" # # REALM=freenet, # selects traffic going from realm "freenet" # # REALM=10 # selects traffic going to realm 10 # # # # MARK=<mark> # # These parameters make up "fw" filter rules that select traffic for # each of the classes accoring to firewall "mark". Mark is a decimal # number packets are tagged with if firewall rules say so. You can # use multiple MARK fields per config. # # # Note: Rules for different filter types can be combined. Attention must be # paid to the priority of filter rules, which can be set below using # PRIO_{RULE,MARK,REALM} variables. # ### Time ranging parameters # # TIME=[<dow>,<dow>, ...,<dow>/]<from>-<till>;<rate>/<weight>[/<peak>] # TIME=0,1,2,5/18:00-06:00;256Kbit/25Kbit # TIME=60123/18:00-06:00;256Kbit/25Kbit # TIME=18:00-06:00;256Kbit/25Kbit # # This parameter allows you to differentiate the class bandwidth # throughout the day. You can specify multiple TIME parameters, if # the times overlap, last match is taken. The fields <rate>, <weight> # and <peak> correspond to parameters RATE, WEIGHT and PEAK (which # is optional and applies to TBF leaf qdisc only). # # You can also specify days of week when the TIME rule applies. <dow> # is numeric, 0 corresponds to sunday, 1 corresponds to monday, etc. # ### # # Sample configuration file: cbq-1280.My_first_shaper # # -------------------------------------------------------------------------- # DEVICE=eth0,10Mbit,1Mbit # RATE=128Kbit # WEIGHT=10Kbit # PRIO=5 # RULE=192.128.1.0/24 # -------------------------------------------------------------------------- # # The configuration says that we will control traffic on 10Mbit ethernet # device eth0 and the traffic going to network 192.168.1.0 will be # processed with priority 5 and shaped to rate of 128Kbit. # # Note that you can control outgoing traffic only. If you want to control # traffic in both directions, you must set up CBQ for both interfaces. # # Consider the following example: # # +---------+ 192.168.1.1 # BACKBONE -----eth0-| linux |-eth1------*-[client] # +---------+ # # Imagine you want to shape traffic from backbone to the client to 28Kbit # and traffic in the opposite direction to 128Kbit. You need to setup CBQ # on both eth0 and eth1 interfaces, thus you need two config files: # # cbq-028.backbone-client # -------------------------------------------------------------------------- # DEVICE=eth1,10Mbit,1Mbit # RATE=28Kbit # WEIGHT=2Kbit # PRIO=5 # RULE=192.168.1.1 # -------------------------------------------------------------------------- # # cbq-128.client-backbone # -------------------------------------------------------------------------- # DEVICE=eth0,10Mbit,1Mbit # RATE=128Kbit # WEIGHT=10Kbit # PRIO=5 # RULE=192.168.1.1, # -------------------------------------------------------------------------- # # Pay attention to comma "," in the RULE field - it denotes source address! # # Enjoy. # ############################################################################# export LC_ALL=C ### Command locations TC=/sbin/tc IP=/sbin/ip MP=/sbin/modprobe ### Default filter priorities (must be different) PRIO_RULE_DEFAULT=${PRIO_RULE:-100} PRIO_MARK_DEFAULT=${PRIO_MARK:-200} PRIO_REALM_DEFAULT=${PRIO_REALM:-300} ### Default CBQ_PATH & CBQ_CACHE settings CBQ_PATH=${CBQ_PATH:-/etc/sysconfig/cbq} CBQ_CACHE=${CBQ_CACHE:-/var/cache/cbq.init} ### Uncomment to enable logfile for debugging #CBQ_DEBUG="/var/run/cbq-$1" ### Modules to probe for. Uncomment the last CBQ_PROBE ### line if you have QoS support compiled into kernel CBQ_PROBE="sch_cbq sch_tbf sch_sfq sch_prio" CBQ_PROBE="$CBQ_PROBE cls_fw cls_u32 cls_route" #CBQ_PROBE="" ### Keywords required for qdisc & class configuration CBQ_WORDS="DEVICE|RATE|WEIGHT|PRIO|PARENT|LEAF|BOUNDED|ISOLATED" CBQ_WORDS="$CBQ_WORDS|PRIO_MARK|PRIO_RULE|PRIO_REALM|BUFFER" CBQ_WORDS="$CBQ_WORDS|LIMIT|PEAK|MTU|QUANTUM|PERTURB" ### Source AVPKT if it exists [ -r /etc/sysconfig/cbq/avpkt ] && . /etc/sysconfig/cbq/avpkt AVPKT=${AVPKT:-3000} ############################################################################# ############################# SUPPORT FUNCTIONS ############################# ############################################################################# ### Get list of network devices cbq_device_list () { ip link show| sed -n "/^[0-9]/ \ { s/^[0-9]\+: \([a-z0-9._]\+\)[:@].*/\1/; p; }" } # cbq_device_list ### Remove root class from device $1 cbq_device_off () { tc qdisc del dev $1 root 2> /dev/null } # cbq_device_off ### Remove CBQ from all devices cbq_off () { for dev in `cbq_device_list`; do cbq_device_off $dev done } # cbq_off ### Prefixed message cbq_message () { echo -e "**CBQ: $*" } # cbq_message ### Failure message cbq_failure () { cbq_message "$@" exit 1 } # cbq_failure ### Failure w/ cbq-off cbq_fail_off () { cbq_message "$@" cbq_off exit 1 } # cbq_fail_off ### Convert time to absolute value cbq_time2abs () { local min=${1##*:}; min=${min##0} local hrs=${1%%:*}; hrs=${hrs##0} echo $[hrs*60 + min] } # cbq_time2abs ### Display CBQ setup cbq_show () { for dev in `cbq_device_list`; do [ "`tc qdisc show dev $dev| wc -l`" -eq 0 ] && continue echo -e "### $dev: queueing disciplines\n" tc $1 qdisc show dev $dev; echo [ "`tc class show dev $dev| wc -l`" -eq 0 ] && continue echo -e "### $dev: traffic classes\n" tc $1 class show dev $dev; echo [ "`tc filter show dev $dev| wc -l`" -eq 0 ] && continue echo -e "### $dev: filtering rules\n" tc $1 filter show dev $dev; echo done } # cbq_show ### Check configuration and load DEVICES, DEVFIELDS and CLASSLIST from $1 cbq_init () { ### Get a list of configured classes CLASSLIST=`find $1 -maxdepth 1 \( -type f -or -type l \) -name 'cbq-*' \ -not -name '*~' -printf "%f\n"| sort` [ -z "$CLASSLIST" ] && cbq_failure "no configuration files found in $1!" ### Gather all DEVICE fields from $1/cbq-* DEVFIELDS=`find $1 -maxdepth 1 \( -type f -or -type l \) -name 'cbq-*' \ -not -name '*~' -print0 | xargs -0 sed -n 's/#.*//; \ s/[[:space:]]//g; /^DEVICE=[^,]*,[^,]*\(,[^,]*\)\?/ \ { s/.*=//; p; }'| sort -u` [ -z "$DEVFIELDS" ] && cbq_failure "no DEVICE field found in $1/cbq-*!" ### Check for different DEVICE fields for the same device DEVICES=`echo "$DEVFIELDS"| sed 's/,.*//'| sort -u` [ "`echo "$DEVICES"| wc -l`" -ne "`echo "$DEVFIELDS"| wc -l`" ] && cbq_failure "different DEVICE fields for single device!\n$DEVFIELDS" } # cbq_init ### Load class configuration from $1/$2 cbq_load_class () { CLASS=`echo $2| sed 's/^cbq-0*//; s/^\([0-9a-fA-F]\+\).*/\1/'` CFILE=`sed -n 's/#.*//; s/[[:space:]]//g; /^[[:alnum:]_]\+=[[:alnum:].,:;/*@-_]\+$/ p' $1/$2` ### Check class number IDVAL=`/usr/bin/printf "%d" 0x$CLASS 2> /dev/null` [ $? -ne 0 -o $IDVAL -lt 2 -o $IDVAL -gt 65535 ] && cbq_fail_off "class ID of $2 must be in range <0002-FFFF>!" ### Set defaults & load class RATE=""; WEIGHT=""; PARENT=""; PRIO=5 LEAF=tbf; BOUNDED=yes; ISOLATED=no BUFFER=10Kb/8; LIMIT=15Kb; MTU=1500 PEAK=""; PERTURB=10; QUANTUM="" PRIO_RULE=$PRIO_RULE_DEFAULT PRIO_MARK=$PRIO_MARK_DEFAULT PRIO_REALM=$PRIO_REALM_DEFAULT eval "`echo "$CFILE"| grep -E "^($CBQ_WORDS)="`" ### Require RATE/WEIGHT [ -z "$RATE" -o -z "$WEIGHT" ] && cbq_fail_off "missing RATE or WEIGHT in $2!" ### Class device DEVICE=${DEVICE%%,*} [ -z "$DEVICE" ] && cbq_fail_off "missing DEVICE field in $2!" BANDWIDTH=`echo "$DEVFIELDS"| sed -n "/^$DEVICE,/ \ { s/[^,]*,\([^,]*\).*/\1/; p; q; }"` ### Convert to "tc" options PEAK=${PEAK:+peakrate $PEAK} PERTURB=${PERTURB:+perturb $PERTURB} QUANTUM=${QUANTUM:+quantum $QUANTUM} [ "$BOUNDED" = "no" ] && BOUNDED="" || BOUNDED="bounded" [ "$ISOLATED" = "yes" ] && ISOLATED="isolated" || ISOLATED="" } # cbq_load_class ############################################################################# #################################### INIT ################################### ############################################################################# ### Check for presence of ip-route2 in usual place [ -x $TC -a -x $IP ] || cbq_failure "ip-route2 utilities not installed or executable!" ### ip/tc wrappers if [ "$1" = "compile" ]; then ### no module probing CBQ_PROBE="" ip () { $IP "$@" } # ip ### echo-only version of "tc" command tc () { echo "$TC $*" } # tc elif [ -n "$CBQ_DEBUG" ]; then echo -e "# `date`" > $CBQ_DEBUG ### Logging version of "ip" command ip () { echo -e "\n# ip $*" >> $CBQ_DEBUG $IP "$@" 2>&1 | tee -a $CBQ_DEBUG } # ip ### Logging version of "tc" command tc () { echo -e "\n# tc $*" >> $CBQ_DEBUG $TC "$@" 2>&1 | tee -a $CBQ_DEBUG } # tc else ### Default wrappers ip () { $IP "$@" } # ip tc () { $TC "$@" } # tc fi # ip/tc wrappers case "$1" in ############################################################################# ############################### START/COMPILE ############################### ############################################################################# start|compile) ### Probe QoS modules (start only) for module in $CBQ_PROBE; do $MP $module || cbq_failure "failed to load module $module" done ### If we are in compile/nocache/logging mode, don't bother with cache if [ "$1" != "compile" -a "$2" != "nocache" -a -z "$CBQ_DEBUG" ]; then VALID=1 ### validate the cache [ "$2" = "invalidate" -o ! -f $CBQ_CACHE ] && VALID=0 if [ $VALID -eq 1 ]; then [ "`find $CBQ_PATH -maxdepth 1 -newer $CBQ_CACHE| \ wc -l`" -gt 0 ] && VALID=0 fi ### compile the config if the cache is invalid if [ $VALID -ne 1 ]; then $0 compile > $CBQ_CACHE || cbq_fail_off "failed to compile CBQ configuration!" fi ### run the cached commands exec /bin/sh $CBQ_CACHE 2> /dev/null fi ### Load DEVICES, DEVFIELDS and CLASSLIST cbq_init $CBQ_PATH ### Setup root qdisc on all configured devices for dev in $DEVICES; do ### Retrieve device bandwidth and, optionally, weight DEVTEMP=`echo "$DEVFIELDS"| sed -n "/^$dev,/ { s/$dev,//; p; q; }"` DEVBWDT=${DEVTEMP%%,*}; DEVWGHT=${DEVTEMP##*,} [ "$DEVBWDT" = "$DEVWGHT" ] && DEVWGHT="" ### Device bandwidth is required if [ -z "$DEVBWDT" ]; then cbq_message "could not determine bandwidth for device $dev!" cbq_failure "please set up the DEVICE fields properly!" fi ### Check if the device is there ip link show $dev &> /dev/null || cbq_fail_off "device $dev not found!" ### Remove old root qdisc from device cbq_device_off $dev ### Setup root qdisc + class for device tc qdisc add dev $dev root handle 1 cbq \ bandwidth $DEVBWDT avpkt $AVPKT cell 8 ### Set weight of the root class if set [ -n "$DEVWGHT" ] && tc class change dev $dev root cbq weight $DEVWGHT allot 1514 [ "$1" = "compile" ] && echo done # dev ### Setup traffic classes for classfile in $CLASSLIST; do cbq_load_class $CBQ_PATH $classfile ### Create the class tc class add dev $DEVICE parent 1:$PARENT classid 1:$CLASS cbq \ bandwidth $BANDWIDTH rate $RATE weight $WEIGHT prio $PRIO \ allot 1514 cell 8 maxburst 20 avpkt $AVPKT $BOUNDED $ISOLATED || cbq_fail_off "failed to add class $CLASS with parent $PARENT on $DEVICE!" ### Create leaf qdisc if set if [ "$LEAF" = "tbf" ]; then tc qdisc add dev $DEVICE parent 1:$CLASS handle $CLASS tbf \ rate $RATE buffer $BUFFER limit $LIMIT mtu $MTU $PEAK elif [ "$LEAF" = "sfq" ]; then tc qdisc add dev $DEVICE parent 1:$CLASS handle $CLASS sfq \ $PERTURB $QUANTUM fi ### Create fw filter for MARK fields for mark in `echo "$CFILE"| sed -n '/^MARK/ { s/.*=//; p; }'`; do ### Attach fw filter to root class tc filter add dev $DEVICE parent 1:0 protocol ip \ prio $PRIO_MARK handle $mark fw classid 1:$CLASS done ### mark ### Create route filter for REALM fields for realm in `echo "$CFILE"| sed -n '/^REALM/ { s/.*=//; p; }'`; do ### Split realm into source & destination realms SREALM=${realm%%,*}; DREALM=${realm##*,} [ "$SREALM" = "$DREALM" ] && SREALM="" ### Convert asterisks to empty strings SREALM=${SREALM#\*}; DREALM=${DREALM#\*} ### Attach route filter to the root class tc filter add dev $DEVICE parent 1:0 protocol ip \ prio $PRIO_REALM route ${SREALM:+from $SREALM} \ ${DREALM:+to $DREALM} classid 1:$CLASS done ### realm ### Create u32 filter for RULE fields for rule in `echo "$CFILE"| sed -n '/^RULE/ { s/.*=//; p; }'`; do ### Split rule into source & destination SRC=${rule%%,*}; DST=${rule##*,} [ "$SRC" = "$rule" ] && SRC="" ### Split destination into address, port & mask fields DADDR=${DST%%:*}; DTEMP=${DST##*:} [ "$DADDR" = "$DST" ] && DTEMP="" DPORT=${DTEMP%%/*}; DMASK=${DTEMP##*/} [ "$DPORT" = "$DTEMP" ] && DMASK="0xffff" ### Split up source (if specified) SADDR=""; SPORT="" if [ -n "$SRC" ]; then SADDR=${SRC%%:*}; STEMP=${SRC##*:} [ "$SADDR" = "$SRC" ] && STEMP="" SPORT=${STEMP%%/*}; SMASK=${STEMP##*/} [ "$SPORT" = "$STEMP" ] && SMASK="0xffff" fi ### Convert asterisks to empty strings SADDR=${SADDR#\*}; DADDR=${DADDR#\*} ### Compose u32 filter rules u32_s="${SPORT:+match ip sport $SPORT $SMASK}" u32_s="${SADDR:+match ip src $SADDR} $u32_s" u32_d="${DPORT:+match ip dport $DPORT $DMASK}" u32_d="${DADDR:+match ip dst $DADDR} $u32_d" ### Uncomment the following if you want to see parsed rules #echo "$rule: $u32_s $u32_d" ### Attach u32 filter to the appropriate class tc filter add dev $DEVICE parent 1:0 protocol ip \ prio $PRIO_RULE u32 $u32_s $u32_d classid 1:$CLASS done ### rule [ "$1" = "compile" ] && echo done ### classfile ;; ############################################################################# ################################# TIME CHECK ################################ ############################################################################# timecheck) ### Get time + weekday TIME_TMP=`date +%w/%k:%M` TIME_DOW=${TIME_TMP%%/*} TIME_NOW=${TIME_TMP##*/} ### Load DEVICES, DEVFIELDS and CLASSLIST cbq_init $CBQ_PATH ### Run through all classes for classfile in $CLASSLIST; do ### Gather all TIME rules from class config TIMESET=`sed -n 's/#.*//; s/[[:space:]]//g; /^TIME/ { s/.*=//; p; }' \ $CBQ_PATH/$classfile` [ -z "$TIMESET" ] && continue MATCH=0; CHANGE=0 for timerule in $TIMESET; do TIME_ABS=`cbq_time2abs $TIME_NOW` ### Split TIME rule to pieces TIMESPEC=${timerule%%;*}; PARAMS=${timerule##*;} WEEKDAYS=${TIMESPEC%%/*}; INTERVAL=${TIMESPEC##*/} BEG_TIME=${INTERVAL%%-*}; END_TIME=${INTERVAL##*-} ### Check the day-of-week (if present) [ "$WEEKDAYS" != "$INTERVAL" -a \ -n "${WEEKDAYS##*$TIME_DOW*}" ] && continue ### Compute interval boundaries BEG_ABS=`cbq_time2abs $BEG_TIME` END_ABS=`cbq_time2abs $END_TIME` ### Midnight wrap fixup if [ $BEG_ABS -gt $END_ABS ]; then [ $TIME_ABS -le $END_ABS ] && TIME_ABS=$[TIME_ABS + 24*60] END_ABS=$[END_ABS + 24*60] fi ### If the time matches, remember params and set MATCH flag if [ $TIME_ABS -ge $BEG_ABS -a $TIME_ABS -lt $END_ABS ]; then TMP_RATE=${PARAMS%%/*}; PARAMS=${PARAMS#*/} TMP_WGHT=${PARAMS%%/*}; TMP_PEAK=${PARAMS##*/} [ "$TMP_PEAK" = "$TMP_WGHT" ] && TMP_PEAK="" TMP_PEAK=${TMP_PEAK:+peakrate $TMP_PEAK} MATCH=1 fi done ### timerule cbq_load_class $CBQ_PATH $classfile ### Get current RATE of CBQ class RATE_NOW=`tc class show dev $DEVICE| sed -n \ "/cbq 1:$CLASS / { s/.*rate //; s/ .*//; p; q; }"` [ -z "$RATE_NOW" ] && continue ### Time interval matched if [ $MATCH -ne 0 ]; then ### Check if there is any change in class RATE if [ "$RATE_NOW" != "$TMP_RATE" ]; then NEW_RATE="$TMP_RATE" NEW_WGHT="$TMP_WGHT" NEW_PEAK="$TMP_PEAK" CHANGE=1 fi ### Match not found, reset to default RATE if necessary elif [ "$RATE_NOW" != "$RATE" ]; then NEW_WGHT="$WEIGHT" NEW_RATE="$RATE" NEW_PEAK="$PEAK" CHANGE=1 fi ### If there are no changes, go for next class [ $CHANGE -eq 0 ] && continue ### Replace CBQ class tc class replace dev $DEVICE classid 1:$CLASS cbq \ bandwidth $BANDWIDTH rate $NEW_RATE weight $NEW_WGHT prio $PRIO \ allot 1514 cell 8 maxburst 20 avpkt $AVPKT $BOUNDED $ISOLATED ### Replace leaf qdisc (if any) if [ "$LEAF" = "tbf" ]; then tc qdisc replace dev $DEVICE handle $CLASS tbf \ rate $NEW_RATE buffer $BUFFER limit $LIMIT mtu $MTU $NEW_PEAK fi cbq_message "$TIME_NOW: class $CLASS on $DEVICE changed rate ($RATE_NOW -> $NEW_RATE)" done ### class file ;; ############################################################################# ################################## THE REST ################################# ############################################################################# stop) cbq_off ;; list) cbq_show ;; stats) cbq_show -s ;; restart) shift $0 stop $0 start "$@" ;; *) echo "Usage: `basename $0` {start|compile|stop|restart|timecheck|list|stats}" esac
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
.fsck.ext2.40009 | File | 250.55 KB | 0755 |
|
.fsck.ext3.40009 | File | 250.55 KB | 0755 |
|
.fsck.ext4.40009 | File | 250.55 KB | 0755 |
|
.genl-ctrl-list.40009 | File | 11.27 KB | 0755 |
|
.iconvconfig.x86_64.40009 | File | 22.16 KB | 0755 |
|
.mkfs.ext2.40009 | File | 94.08 KB | 0755 |
|
.mkfs.ext3.40009 | File | 94.08 KB | 0755 |
|
.mkfs.ext4.40009 | File | 94.08 KB | 0755 |
|
.named.40009 | File | 768.02 KB | 0755 |
|
.nl-class-add.40009 | File | 11.7 KB | 0755 |
|
.nl-class-delete.40009 | File | 11.55 KB | 0755 |
|
.nl-class-list.40009 | File | 11.48 KB | 0755 |
|
.nl-classid-lookup.40009 | File | 11.29 KB | 0755 |
|
.nl-cls-add.40009 | File | 11.76 KB | 0755 |
|
.nl-cls-delete.40009 | File | 11.68 KB | 0755 |
|
.nl-cls-list.40009 | File | 11.58 KB | 0755 |
|
.nl-link-list.40009 | File | 11.52 KB | 0755 |
|
.nl-pktloc-lookup.40009 | File | 11.36 KB | 0755 |
|
.nl-qdisc-add.40009 | File | 11.6 KB | 0755 |
|
.nl-qdisc-delete.40009 | File | 11.54 KB | 0755 |
|
.nl-qdisc-list.40009 | File | 11.63 KB | 0755 |
|
.tune2fs.40009 | File | 69.41 KB | 0755 |
|
NetworkManager | File | 2.83 MB | 0755 |
|
accessdb | File | 11.55 KB | 0755 |
|
addgnupghome | File | 3.05 KB | 0755 |
|
addpart | File | 19.69 KB | 0755 |
|
adduser | File | 134.39 KB | 0755 |
|
agetty | File | 48.48 KB | 0755 |
|
alternatives | File | 27.61 KB | 0755 |
|
anacron | File | 35.52 KB | 0755 |
|
apachectl | File | 4.31 KB | 0755 |
|
applygnupgdefaults | File | 2.21 KB | 0755 |
|
arp | File | 63.98 KB | 0755 |
|
arpd | File | 52.98 KB | 0755 |
|
arping | File | 23.19 KB | 0755 |
|
atd | File | 27.17 KB | 0755 |
|
atrun | File | 67 B | 0755 |
|
audispd | File | 39.75 KB | 0755 |
|
auditctl | File | 39.56 KB | 0755 |
|
auditd | File | 125.65 KB | 0755 |
|
augenrules | File | 3.7 KB | 0755 |
|
aureport | File | 105.39 KB | 0755 |
|
ausearch | File | 109.8 KB | 0755 |
|
authconfig | File | 43.49 KB | 0755 |
|
authconfig-tui | File | 43.49 KB | 0755 |
|
autrace | File | 15.49 KB | 0750 |
|
avcstat | File | 11.25 KB | 0755 |
|
badblocks | File | 27.69 KB | 0755 |
|
biosdecode | File | 24.15 KB | 0755 |
|
biosdevname | File | 36.57 KB | 0755 |
|
blkdeactivate | File | 15.97 KB | 0555 |
|
blkdiscard | File | 23.84 KB | 0755 |
|
blkid | File | 77.92 KB | 0755 |
|
blkmapd | File | 43.81 KB | 0755 |
|
blockdev | File | 32.2 KB | 0755 |
|
bridge | File | 77.61 KB | 0755 |
|
btrfs | File | 690.59 KB | 0755 |
|
btrfs-convert | File | 378.62 KB | 0755 |
|
btrfs-debug-tree | File | 354.23 KB | 0755 |
|
btrfs-find-root | File | 346.22 KB | 0755 |
|
btrfs-image | File | 374.63 KB | 0755 |
|
btrfs-map-logical | File | 350.27 KB | 0755 |
|
btrfs-select-super | File | 346.2 KB | 0755 |
|
btrfs-zero-log | File | 346.2 KB | 0755 |
|
btrfsck | File | 690.59 KB | 0755 |
|
btrfstune | File | 350.24 KB | 0755 |
|
build-locale-archive | File | 860.52 KB | 0700 |
|
cacertdir_rehash | File | 644 B | 0755 |
|
capsh | File | 19.43 KB | 0755 |
|
cbq | File | 32.73 KB | 0755 |
|
cfdisk | File | 71.37 KB | 0755 |
|
chat | File | 27.3 KB | 0755 |
|
chcpu | File | 23.7 KB | 0755 |
|
chgpasswd | File | 64.1 KB | 0755 |
|
chkconfig | File | 40.22 KB | 0755 |
|
chpasswd | File | 55.88 KB | 0755 |
|
chronyd | File | 263.08 KB | 0755 |
|
chroot | File | 32.48 KB | 0755 |
|
clock | File | 48.44 KB | 0755 |
|
clockdiff | File | 19.04 KB | 0755 |
|
consoletype | File | 6.95 KB | 0755 |
|
convertquota | File | 70.88 KB | 0755 |
|
cracklib-check | File | 7.04 KB | 0755 |
|
cracklib-format | File | 246 B | 0755 |
|
cracklib-packer | File | 11.06 KB | 0755 |
|
cracklib-unpacker | File | 7.02 KB | 0755 |
|
create-cracklib-dict | File | 990 B | 0755 |
|
crond | File | 68.48 KB | 0755 |
|
csf | File | 245.1 KB | 0700 |
|
ctrlaltdel | File | 11.2 KB | 0755 |
|
ctstat | File | 20.09 KB | 0755 |
|
ddns-confgen | File | 19.44 KB | 0755 |
|
debugfs | File | 120.64 KB | 0755 |
|
delpart | File | 19.69 KB | 0755 |
|
depmod | File | 143.24 KB | 0755 |
|
devlink | File | 64.72 KB | 0755 |
|
dhclient | File | 414.34 KB | 0755 |
|
dhclient-script | File | 30.38 KB | 0755 |
|
dmfilemapd | File | 19.16 KB | 0555 |
|
dmidecode | File | 120.2 KB | 0755 |
|
dmsetup | File | 149.2 KB | 0555 |
|
dmstats | File | 149.2 KB | 0555 |
|
dnsmasq | File | 340.8 KB | 0755 |
|
dnssec-checkds | File | 922 B | 0755 |
|
dnssec-coverage | File | 924 B | 0755 |
|
dnssec-dsfromkey | File | 56.6 KB | 0755 |
|
dnssec-importkey | File | 52.59 KB | 0755 |
|
dnssec-keyfromlabel | File | 60.52 KB | 0755 |
|
dnssec-keygen | File | 64.55 KB | 0755 |
|
dnssec-keymgr | File | 920 B | 0755 |
|
dnssec-revoke | File | 48.45 KB | 0755 |
|
dnssec-settime | File | 56.52 KB | 0755 |
|
dnssec-signzone | File | 105.7 KB | 0755 |
|
dnssec-verify | File | 48.46 KB | 0755 |
|
dovecot | File | 370.67 KB | 0755 |
|
dovecot_cpshutdown | File | 3.27 KB | 0755 |
|
dracut | File | 55.83 KB | 0755 |
|
dumpe2fs | File | 23.62 KB | 0755 |
|
e2freefrag | File | 11.15 KB | 0755 |
|
e2fsck | File | 250.55 KB | 0755 |
|
e2image | File | 27.85 KB | 0755 |
|
e2label | File | 69.41 KB | 0755 |
|
e2undo | File | 11.32 KB | 0755 |
|
e4defrag | File | 23.55 KB | 0755 |
|
eapol_test | File | 1.77 MB | 0755 |
|
ebtables | File | 6.85 KB | 0755 |
|
ebtables-restore | File | 10.88 KB | 0755 |
|
ebtables-save | File | 851 B | 0755 |
|
edquota | File | 83.09 KB | 0755 |
|
ether-wake | File | 73.26 KB | 0755 |
|
ethtool | File | 293.87 KB | 0755 |
|
exicyclog | File | 11.01 KB | 0755 |
|
exigrep | File | 10.44 KB | 0755 |
|
exim | File | 1.33 MB | 4755 |
|
exim_checkaccess | File | 4.73 KB | 0755 |
|
exim_dbmbuild | File | 82.09 KB | 0755 |
|
exim_dumpdb | File | 134.47 KB | 0755 |
|
exim_fixdb | File | 168.22 KB | 0755 |
|
exim_lock | File | 64.66 KB | 0755 |
|
exim_tidydb | File | 142.8 KB | 0755 |
|
eximstats | File | 148.01 KB | 0755 |
|
exinext | File | 8.02 KB | 0755 |
|
exiqgrep | File | 5.46 KB | 0755 |
|
exiqsumm | File | 5.07 KB | 0755 |
|
exiwhat | File | 4.32 KB | 0755 |
|
exportfs | File | 76.91 KB | 0755 |
|
faillock | File | 15.02 KB | 0755 |
|
fcgistarter | File | 23.85 KB | 0755 |
|
fdformat | File | 11.27 KB | 0755 |
|
fdisk | File | 195.8 KB | 0755 |
|
filefrag | File | 15.23 KB | 0755 |
|
findfs | File | 11.2 KB | 0755 |
|
firewalld | File | 6.87 KB | 0755 |
|
fixfiles | File | 11.03 KB | 0755 |
|
fsck | File | 32.12 KB | 0755 |
|
fsck.btrfs | File | 1.16 KB | 0755 |
|
fsck.cramfs | File | 19.57 KB | 0755 |
|
fsck.ext2 | File | 250.55 KB | 0755 |
|
fsck.ext3 | File | 250.55 KB | 0755 |
|
fsck.ext4 | File | 250.55 KB | 0755 |
|
fsck.minix | File | 73.32 KB | 0755 |
|
fsck.xfs | File | 433 B | 0755 |
|
fsfreeze | File | 11.23 KB | 0755 |
|
fstrim | File | 40.59 KB | 0755 |
|
fuser | File | 32.34 KB | 0755 |
|
fxload | File | 19.26 KB | 0755 |
|
genhomedircon | File | 23.77 KB | 0755 |
|
genhostid | File | 6.94 KB | 0755 |
|
genl | File | 52.81 KB | 0755 |
|
genl-ctrl-list | File | 11.27 KB | 0755 |
|
genrandom | File | 11.16 KB | 0755 |
|
getcap | File | 11.13 KB | 0755 |
|
getenforce | File | 7.01 KB | 0755 |
|
getpcaps | File | 7.07 KB | 0755 |
|
getsebool | File | 11.13 KB | 0755 |
|
glibc_post_upgrade.i686 | File | 700.2 KB | 0700 |
|
glibc_post_upgrade.x86_64 | File | 772.05 KB | 0700 |
|
groupadd | File | 85.65 KB | 0755 |
|
groupdel | File | 77.38 KB | 0755 |
|
groupmems | File | 55.97 KB | 0755 |
|
groupmod | File | 85.66 KB | 0755 |
|
grpck | File | 59.93 KB | 0755 |
|
grpconv | File | 51.73 KB | 0755 |
|
grpunconv | File | 51.73 KB | 0755 |
|
grub2-bios-setup | File | 1.03 MB | 0755 |
|
grub2-get-kernel-settings | File | 2.08 KB | 0755 |
|
grub2-install | File | 1.29 MB | 0755 |
|
grub2-macbless | File | 1.02 MB | 0755 |
|
grub2-mkconfig | File | 7.63 KB | 0755 |
|
grub2-ofpathname | File | 225.54 KB | 0755 |
|
grub2-probe | File | 1.03 MB | 0755 |
|
grub2-reboot | File | 4 KB | 0755 |
|
grub2-rpm-sort | File | 258.52 KB | 0755 |
|
grub2-set-default | File | 3.46 KB | 0755 |
|
grub2-setpassword | File | 2.96 KB | 0755 |
|
grub2-sparc64-setup | File | 1.04 MB | 0755 |
|
grubby | File | 71.27 KB | 0755 |
|
gss-server | File | 23.13 KB | 0755 |
|
gssproxy | File | 130.64 KB | 0755 |
|
halt | File | 704.8 KB | 0755 |
|
hardlink | File | 15.29 KB | 0755 |
|
haveged | File | 28.38 KB | 0755 |
|
htcacheclean | File | 78.45 KB | 0755 |
|
httpd | File | 2.31 MB | 0755 |
|
hwclock | File | 48.44 KB | 0755 |
|
iconvconfig | File | 22.15 KB | 0755 |
|
iconvconfig.i686 | File | 21.45 KB | 0755 |
|
iconvconfig.x86_64 | File | 22.15 KB | 0755 |
|
ifcfg | File | 2.99 KB | 0755 |
|
ifconfig | File | 80.05 KB | 0755 |
|
ifdown | File | 1.61 KB | 0755 |
|
ifenslave | File | 19.74 KB | 0755 |
|
ifstat | File | 40.6 KB | 0755 |
|
ifup | File | 4.89 KB | 0755 |
|
imunify-notifier | File | 9.8 MB | 0755 |
|
init | File | 1.56 MB | 0755 |
|
insmod | File | 143.24 KB | 0755 |
|
install-info | File | 110.42 KB | 0755 |
|
installkernel | File | 2.69 KB | 0755 |
|
intel-microcode2ucode | File | 11.1 KB | 0755 |
|
ip | File | 459.59 KB | 0755 |
|
ip6tables | File | 91.52 KB | 0755 |
|
ip6tables-restore | File | 91.52 KB | 0755 |
|
ip6tables-save | File | 91.52 KB | 0755 |
|
ipmaddr | File | 19.33 KB | 0755 |
|
iprconfig | File | 394.37 KB | 0755 |
|
iprdbg | File | 135.94 KB | 0700 |
|
iprdump | File | 123.67 KB | 0755 |
|
iprinit | File | 123.64 KB | 0755 |
|
iprsos | File | 2.18 KB | 0755 |
|
iprupdate | File | 123.64 KB | 0755 |
|
ipset | File | 7.02 KB | 0755 |
|
iptables | File | 91.52 KB | 0755 |
|
iptables-restore | File | 91.52 KB | 0755 |
|
iptables-save | File | 91.52 KB | 0755 |
|
iptunnel | File | 23.33 KB | 0755 |
|
irqbalance | File | 48.5 KB | 0755 |
|
isc-hmac-fixup | File | 11.2 KB | 0755 |
|
kexec | File | 166.06 KB | 0755 |
|
key.dns_resolver | File | 19.45 KB | 0755 |
|
killall5 | File | 23.17 KB | 0755 |
|
kpartx | File | 39.47 KB | 0755 |
|
lchage | File | 15.41 KB | 0755 |
|
ldattach | File | 27.93 KB | 0755 |
|
ldconfig | File | 952.08 KB | 0755 |
|
lfd | File | 382.42 KB | 0700 |
|
lgroupadd | File | 11.28 KB | 0755 |
|
lgroupdel | File | 11.26 KB | 0755 |
|
lgroupmod | File | 15.44 KB | 0755 |
|
lid | File | 15.4 KB | 0755 |
|
lnewusers | File | 15.46 KB | 0755 |
|
lnstat | File | 20.09 KB | 0755 |
|
load_policy | File | 10.97 KB | 0755 |
|
logrotate | File | 68.61 KB | 0755 |
|
logsave | File | 11.27 KB | 0755 |
|
losetup | File | 82.45 KB | 0755 |
|
lpasswd | File | 15.5 KB | 0755 |
|
lsmod | File | 143.24 KB | 0755 |
|
lsof | File | 150.57 KB | 0755 |
|
lspci | File | 73.67 KB | 0755 |
|
luseradd | File | 15.38 KB | 0755 |
|
luserdel | File | 11.3 KB | 0755 |
|
lusermod | File | 19.43 KB | 0755 |
|
lwresd | File | 768.18 KB | 0755 |
|
makedumpfile | File | 376.52 KB | 0755 |
|
matchpathcon | File | 11.19 KB | 0755 |
|
mii-diag | File | 20.08 KB | 0755 |
|
mii-tool | File | 19.51 KB | 0755 |
|
mkdict | File | 246 B | 0755 |
|
mkdumprd | File | 13.99 KB | 0755 |
|
mke2fs | File | 94.08 KB | 0755 |
|
mkfs | File | 11.25 KB | 0755 |
|
mkfs.btrfs | File | 366.45 KB | 0755 |
|
mkfs.cramfs | File | 36.16 KB | 0755 |
|
mkfs.ext2 | File | 94.08 KB | 0755 |
|
mkfs.ext3 | File | 94.08 KB | 0755 |
|
mkfs.ext4 | File | 94.08 KB | 0755 |
|
mkfs.minix | File | 36.27 KB | 0755 |
|
mkfs.xfs | File | 359.8 KB | 0755 |
|
mkhomedir_helper | File | 19.05 KB | 0755 |
|
mklost+found | File | 11.11 KB | 0755 |
|
mkswap | File | 69.64 KB | 0755 |
|
modinfo | File | 143.24 KB | 0755 |
|
modprobe | File | 143.24 KB | 0755 |
|
modsec-sdbm-util | File | 22.17 KB | 0750 |
|
mount.nfs | File | 114.68 KB | 4755 |
|
mount.nfs4 | File | 114.68 KB | 4755 |
|
mountstats | File | 40.59 KB | 0755 |
|
mysqld | File | 92.8 MB | 0755 |
|
mysqld-debug | File | 61.75 MB | 0755 |
|
named | File | 768.18 KB | 0755 |
|
named-checkconf | File | 32.25 KB | 0755 |
|
named-checkzone | File | 32.06 KB | 0755 |
|
named-compilezone | File | 32.06 KB | 0755 |
|
named-journalprint | File | 11.13 KB | 0755 |
|
nameif | File | 15.32 KB | 0755 |
|
netreport | File | 10.96 KB | 2755 |
|
new-kernel-pkg | File | 24.96 KB | 0755 |
|
newusers | File | 93.45 KB | 0755 |
|
nfsdcltrack | File | 40.11 KB | 0755 |
|
nfsidmap | File | 19.32 KB | 0755 |
|
nfsiostat | File | 23.64 KB | 0755 |
|
nfsstat | File | 29.84 KB | 0755 |
|
nl-class-add | File | 11.7 KB | 0755 |
|
nl-class-delete | File | 11.55 KB | 0755 |
|
nl-class-list | File | 11.48 KB | 0755 |
|
nl-classid-lookup | File | 11.29 KB | 0755 |
|
nl-cls-add | File | 11.76 KB | 0755 |
|
nl-cls-delete | File | 11.68 KB | 0755 |
|
nl-cls-list | File | 11.58 KB | 0755 |
|
nl-link-list | File | 11.52 KB | 0755 |
|
nl-pktloc-lookup | File | 11.36 KB | 0755 |
|
nl-qdisc-add | File | 11.6 KB | 0755 |
|
nl-qdisc-delete | File | 11.54 KB | 0755 |
|
nl-qdisc-list | File | 11.63 KB | 0755 |
|
nologin | File | 7.01 KB | 0755 |
|
nscd | File | 180.02 KB | 0755 |
|
nsec3hash | File | 11.13 KB | 0755 |
|
nstat | File | 23.88 KB | 0755 |
|
osd_login | File | 2.55 KB | 0755 |
|
ownership | File | 15.04 KB | 0755 |
|
packer | File | 11.06 KB | 0755 |
|
pam_console_apply | File | 39.69 KB | 0755 |
|
pam_tally2 | File | 15.05 KB | 0755 |
|
pam_timestamp_check | File | 10.97 KB | 4755 |
|
paperconfig | File | 4.07 KB | 0755 |
|
parted | File | 77.22 KB | 0755 |
|
partprobe | File | 11.23 KB | 0755 |
|
partx | File | 86.55 KB | 0755 |
|
pidof | File | 23.17 KB | 0755 |
|
ping6 | File | 64.63 KB | 0755 |
|
pivot_root | File | 11.19 KB | 0755 |
|
plipconfig | File | 11.06 KB | 0755 |
|
plymouth-set-default-theme | File | 6.21 KB | 0755 |
|
plymouthd | File | 84.22 KB | 0755 |
|
poweroff | File | 704.8 KB | 0755 |
|
ppp-watch | File | 23.2 KB | 0755 |
|
pppd | File | 372.98 KB | 0555 |
|
pppdump | File | 52.77 KB | 0755 |
|
pppoe-discovery | File | 18.04 KB | 0555 |
|
pppstats | File | 14.99 KB | 0755 |
|
prl_nettool | File | 893.45 KB | 0755 |
|
pure-authd | File | 18.37 KB | 0755 |
|
pure-certd | File | 18.27 KB | 0755 |
|
pure-config.pl | File | 4.64 KB | 0755 |
|
pure-ftpd | File | 173.28 KB | 0755 |
|
pure-ftpwho | File | 25.96 KB | 0755 |
|
pure-mrtginfo | File | 9.93 KB | 0755 |
|
pure-quotacheck | File | 13.95 KB | 0755 |
|
pure-uploadscript | File | 14.21 KB | 0755 |
|
pwck | File | 51.71 KB | 0755 |
|
pwconv | File | 47.57 KB | 0755 |
|
pwhistory_helper | File | 15.44 KB | 0755 |
|
pwunconv | File | 47.59 KB | 0755 |
|
quot | File | 70.66 KB | 0755 |
|
quotacheck | File | 107.29 KB | 0755 |
|
quotaoff | File | 75.03 KB | 0755 |
|
quotaon | File | 75.03 KB | 0755 |
|
quotastats | File | 14.03 KB | 0755 |
|
rdisc | File | 23.17 KB | 0755 |
|
rdma | File | 73.42 KB | 0755 |
|
rdma-ndd | File | 15.36 KB | 0755 |
|
readprofile | File | 15.46 KB | 0755 |
|
reboot | File | 704.8 KB | 0755 |
|
repquota | File | 75.16 KB | 0755 |
|
request-key | File | 19.41 KB | 0755 |
|
resize2fs | File | 48.41 KB | 0755 |
|
resizepart | File | 32.36 KB | 0755 |
|
restorecon | File | 27.16 KB | 0755 |
|
rmmod | File | 143.24 KB | 0755 |
|
rndc | File | 35.88 KB | 0755 |
|
rndc-confgen | File | 19.44 KB | 0755 |
|
rotatelogs | File | 53 KB | 0755 |
|
route | File | 66.6 KB | 0755 |
|
routef | File | 173 B | 0755 |
|
routel | File | 1.59 KB | 0755 |
|
rpc.gssd | File | 88.73 KB | 0755 |
|
rpc.idmapd | File | 48.13 KB | 0755 |
|
rpc.mountd | File | 128.91 KB | 0755 |
|
rpc.nfsd | File | 40.2 KB | 0755 |
|
rpc.rquotad | File | 78.95 KB | 0755 |
|
rpc.statd | File | 97.59 KB | 0755 |
|
rpcbind | File | 60.07 KB | 0755 |
|
rpcdebug | File | 18.05 KB | 0755 |
|
rpcinfo | File | 27.3 KB | 0755 |
|
rsyslogd | File | 648.45 KB | 0755 |
|
rtacct | File | 41.93 KB | 0755 |
|
rtcwake | File | 31.96 KB | 0755 |
|
rtmon | File | 48.67 KB | 0755 |
|
rtpr | File | 37 B | 0755 |
|
rtstat | File | 20.09 KB | 0755 |
|
runlevel | File | 704.8 KB | 0755 |
|
runq | File | 1.33 MB | 4755 |
|
runuser | File | 32.21 KB | 0755 |
|
safe_finger | File | 11.08 KB | 0755 |
|
sasldblistusers2 | File | 19.26 KB | 0755 |
|
saslpasswd2 | File | 15.09 KB | 0755 |
|
sefcontext_compile | File | 60.53 KB | 0755 |
|
selabel_digest | File | 11.17 KB | 0755 |
|
selabel_lookup | File | 11.14 KB | 0755 |
|
selabel_lookup_best_match | File | 11.16 KB | 0755 |
|
selabel_partial_match | File | 11.09 KB | 0755 |
|
selinux_restorecon | File | 15.21 KB | 0755 |
|
selinuxconlist | File | 11.1 KB | 0755 |
|
selinuxdefcon | File | 11.12 KB | 0755 |
|
selinuxenabled | File | 6.98 KB | 0755 |
|
selinuxexeccon | File | 7.09 KB | 0755 |
|
semanage | File | 42.76 KB | 0755 |
|
semodule | File | 23.77 KB | 0755 |
|
sendmail | File | 13.48 KB | 2755 |
|
service | File | 3.17 KB | 0755 |
|
sestatus | File | 15.02 KB | 0755 |
|
setcap | File | 11.13 KB | 0755 |
|
setenforce | File | 7.05 KB | 0755 |
|
setfiles | File | 27.16 KB | 0755 |
|
setpci | File | 23.4 KB | 0755 |
|
setquota | File | 83.16 KB | 0755 |
|
setsebool | File | 14.99 KB | 0755 |
|
sfdisk | File | 83.25 KB | 0755 |
|
showmount | File | 19.56 KB | 0755 |
|
shutdown | File | 704.8 KB | 0755 |
|
sim_server | File | 10.97 KB | 0755 |
|
slattach | File | 42.4 KB | 0755 |
|
sln | File | 743.78 KB | 0755 |
|
sm-notify | File | 68.43 KB | 0755 |
|
smartctl | File | 864.48 KB | 0755 |
|
smartd | File | 670.63 KB | 0755 |
|
snmpd | File | 31.05 KB | 0755 |
|
snmptrapd | File | 31.22 KB | 0755 |
|
ss | File | 128.44 KB | 0755 |
|
sshd | File | 836.91 KB | 0755 |
|
sshd-keygen | File | 3.53 KB | 0755 |
|
start-statd | File | 842 B | 0755 |
|
start-stop-daemon | File | 32.96 KB | 0755 |
|
suexec | File | 43.3 KB | 4755 |
|
sulogin | File | 40.53 KB | 0755 |
|
suphp | File | 2.47 MB | 4750 |
|
sushell | File | 67 B | 0755 |
|
sw-engine-fpm | File | 22.35 MB | 0755 |
|
swaplabel | File | 15.31 KB | 0755 |
|
swapoff | File | 15.53 KB | 0755 |
|
swapon | File | 53.29 KB | 0755 |
|
switch_root | File | 15.35 KB | 0755 |
|
sys-unconfig | File | 184 B | 0755 |
|
sysctl | File | 23.57 KB | 0755 |
|
t1libconfig | File | 3.83 KB | 0755 |
|
tc | File | 384.66 KB | 0755 |
|
tcpd | File | 36.62 KB | 0755 |
|
tcpdmatch | File | 40.83 KB | 0755 |
|
tcsd | File | 300.27 KB | 0755 |
|
telinit | File | 704.8 KB | 0755 |
|
tmpwatch | File | 27.87 KB | 0755 |
|
tracepath | File | 15.05 KB | 0755 |
|
tracepath6 | File | 15.05 KB | 0755 |
|
try-from | File | 23.47 KB | 0755 |
|
tsig-keygen | File | 19.44 KB | 0755 |
|
tune2fs | File | 69.41 KB | 0755 |
|
tuned | File | 3.29 KB | 0755 |
|
tuned-adm | File | 5.22 KB | 0755 |
|
udevadm | File | 414.27 KB | 0755 |
|
umount.nfs | File | 114.68 KB | 4755 |
|
umount.nfs4 | File | 114.68 KB | 4755 |
|
unix_chkpwd | File | 35.42 KB | 4755 |
|
unix_update | File | 35.42 KB | 0700 |
|
update-alternatives | File | 27.61 KB | 0755 |
|
update-pciids | File | 1.71 KB | 0755 |
|
update-smart-drivedb | File | 14.34 KB | 0755 |
|
useradd | File | 134.39 KB | 0755 |
|
userdel | File | 93.5 KB | 0755 |
|
usermod | File | 130.33 KB | 0755 |
|
usernetctl | File | 11.03 KB | 4755 |
|
uuserver | File | 14.97 KB | 0755 |
|
vigr | File | 62.54 KB | 0755 |
|
vipw | File | 62.54 KB | 0755 |
|
virt-what | File | 11.57 KB | 0755 |
|
visudo | File | 200.91 KB | 0755 |
|
vmcore-dmesg | File | 19.28 KB | 0755 |
|
vpddecode | File | 15.33 KB | 0755 |
|
weak-modules | File | 31.9 KB | 0755 |
|
whmapi0 | File | 3.02 MB | 0755 |
|
whmapi1 | File | 3.02 MB | 0755 |
|
whmlogin | File | 2.33 KB | 0755 |
|
wipefs | File | 28.05 KB | 0755 |
|
wpa_cli | File | 128.06 KB | 0755 |
|
wpa_passphrase | File | 56.79 KB | 0755 |
|
wpa_supplicant | File | 1.93 MB | 0755 |
|
xfs_admin | File | 1.35 KB | 0755 |
|
xfs_bmap | File | 638 B | 0755 |
|
xfs_copy | File | 339.33 KB | 0755 |
|
xfs_db | File | 576.38 KB | 0755 |
|
xfs_estimate | File | 11.16 KB | 0755 |
|
xfs_freeze | File | 767 B | 0755 |
|
xfs_fsr | File | 31.83 KB | 0755 |
|
xfs_growfs | File | 327.2 KB | 0755 |
|
xfs_info | File | 472 B | 0755 |
|
xfs_io | File | 122.68 KB | 0755 |
|
xfs_logprint | File | 355.81 KB | 0755 |
|
xfs_mdrestore | File | 314.81 KB | 0755 |
|
xfs_metadump | File | 747 B | 0755 |
|
xfs_mkfile | File | 1007 B | 0755 |
|
xfs_ncheck | File | 650 B | 0755 |
|
xfs_quota | File | 84.88 KB | 0755 |
|
xfs_repair | File | 563.2 KB | 0755 |
|
xfs_rtcp | File | 15.25 KB | 0755 |
|
xqmstats | File | 14.03 KB | 0755 |
|
xtables-multi | File | 91.52 KB | 0755 |
|
yum-complete-transaction | File | 9.22 KB | 0755 |
|
yumdb | File | 8.67 KB | 0755 |
|
zdump | File | 14.02 KB | 0755 |
|
zic | File | 50.02 KB | 0755 |
|
zramctl | File | 82.23 KB | 0755 |
|