blob: 5dd869f4dc2893489eb4ecc669ebf7a3c2b5d129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/perl
#
# Utility routines for validating input
# These functions don't change existing QoS parameters
#
use lib "/opt/vyatta/share/perl5/";
use VyattaQosUtil;
use Getopt::Long;
GetOptions(
"rate=s" => \$rate,
"burst=s" => \$burst,
"protocol=s" => \$protocol,
"dsfield=s" => \$dsfield,
);
if ( defined $rate ) {
my $r = VyattaQosUtil::getRate($rate);
exit 0;
}
if ( defined $burst ) {
my $b = VyattaQosUtil::getSize($burst);
exit 0;
}
if ( defined $protocol ) {
my $p = VyattaQosUtil::getProtocol($protocol);
exit 0;
}
if ( defined $dsfield ) {
my $d = VyattaQosUtil::getDsfield($dsfield);
exit 0;
}
print <<EOF;
usage: vyatta-qos-util.pl --rate rate
vyatta-qos-util.pl --burst size
vyatta-qos-util.pl --protocol protocol
vyatta-qos-util.pl --dsfield tos|dsfield
EOF
exit 1;
|