summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2018-10-18 13:18:56 -0700
committerStephen Hemminger <stephen@networkplumber.org>2018-10-18 13:18:56 -0700
commitab7318f9d4570ce8d7cc713d95f121242df94788 (patch)
tree649e8f65e82da83d7cb015005d3fd1c64cde37e6 /examples
parent9d715cf65a066fe51797331d1b7057900d3162ec (diff)
downloadiproute2-ab7318f9d4570ce8d7cc713d95f121242df94788.tar.gz
examples: fix spelling errors
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/cbq.init-v0.7.36
-rw-r--r--examples/diffserv/Edge22
-rw-r--r--examples/diffserv/Edge31-ca-u328
-rw-r--r--examples/diffserv/Edge31-cb-chains4
-rw-r--r--examples/diffserv/Edge32-ca-u328
-rw-r--r--examples/diffserv/Edge32-cb-chains4
-rw-r--r--examples/diffserv/Edge32-cb-u324
-rw-r--r--examples/diffserv/regression-testing2
8 files changed, 19 insertions, 19 deletions
diff --git a/examples/cbq.init-v0.7.3 b/examples/cbq.init-v0.7.3
index 66448d88..ec783948 100644
--- a/examples/cbq.init-v0.7.3
+++ b/examples/cbq.init-v0.7.3
@@ -256,7 +256,7 @@
# 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
+# to "no". To allow the class to borrow bandwidth (provided it is not
# bounded), you must set LEAF to "none" or "sfq".
#
# If you want to ensure (approximately) fair sharing of bandwidth among
@@ -271,7 +271,7 @@
#
# 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.
+# bandwidth from its parent.
#
# ISOLATED=yes|no optional, default "no"
#
@@ -392,7 +392,7 @@
# 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
+# each of the classes according 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.
#
diff --git a/examples/diffserv/Edge2 b/examples/diffserv/Edge2
index 2f78da24..f81f510f 100644
--- a/examples/diffserv/Edge2
+++ b/examples/diffserv/Edge2
@@ -36,7 +36,7 @@ $TC qdisc add dev $INDEV handle ffff: ingress
# by ipchains to tag value 3 (The rest of the subnet packets -- not
# tag 1 or 2) to not go beyond 1.5Mbps
# Allow up to at least 60 packets to burst (assuming maximum packet
-# size of # 1.5 KB) in the long run and upto about 6 packets in the
+# size of # 1.5 KB) in the long run and up to about 6 packets in the
# shot run
############################################################
diff --git a/examples/diffserv/Edge31-ca-u32 b/examples/diffserv/Edge31-ca-u32
index 25e6c0b1..7344851a 100644
--- a/examples/diffserv/Edge31-ca-u32
+++ b/examples/diffserv/Edge31-ca-u32
@@ -47,7 +47,7 @@ meter5=" police index 5 rate $CIR1 burst $CBS2 "
# *********************** AF41 ***************************
#AF41 (DSCP 0x22) is passed on with a tcindex value 1
-#if it doesnt exceed its CIR/CBS
+#if it doesn't exceed its CIR/CBS
#policer 1 is used.
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \
@@ -75,7 +75,7 @@ drop flowid :3
# *********************** AF42 ***************************
#AF42 (DSCP 0x24) from is passed on with a tcindex value 2
-#if it doesnt exceed its CIR/CBS
+#if it doesn't exceed its CIR/CBS
#policer 2 is used. Note that this is shared with the AF41
#
#
@@ -95,7 +95,7 @@ drop flowid :3
# *********************** AF43 ***************************
#
#AF43 (DSCP 0x26) from is passed on with a tcindex value 3
-#if it doesnt exceed its CIR/CBS
+#if it doesn't exceed its CIR/CBS
#policer 3 is used. Note that this is shared with the AF41 and AF42
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \
@@ -106,7 +106,7 @@ drop flowid :3
# *********************** BE ***************************
#
# Anything else (not from the AF4*) gets discarded if it
-# exceeds 1Mbps and by default goes to BE if it doesnt
+# exceeds 1Mbps and by default goes to BE if it doesn't
# Note that the BE class is also used by the AF4* in the worst
# case
#
diff --git a/examples/diffserv/Edge31-cb-chains b/examples/diffserv/Edge31-cb-chains
index d7faae98..49c396bc 100644
--- a/examples/diffserv/Edge31-cb-chains
+++ b/examples/diffserv/Edge31-cb-chains
@@ -47,7 +47,7 @@ $TC qdisc add dev $INDEV handle ffff: ingress
############################################################
#
# anything with fw tag of 1 is passed on with a tcindex value 1
-#if it doesnt exceed its allocated rate (CIR/CBS)
+#if it doesn't exceed its allocated rate (CIR/CBS)
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \
$meter1 \
@@ -68,7 +68,7 @@ $meter3 \
drop flowid 4:3
#
# Anything else (not from the subnet 10.2.0.24/24) gets discarded if it
-# exceeds 1Mbps and by default goes to BE if it doesnt
+# exceeds 1Mbps and by default goes to BE if it doesn't
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 2 fw \
$meter5 \
diff --git a/examples/diffserv/Edge32-ca-u32 b/examples/diffserv/Edge32-ca-u32
index edf21e43..9d3ccd07 100644
--- a/examples/diffserv/Edge32-ca-u32
+++ b/examples/diffserv/Edge32-ca-u32
@@ -51,7 +51,7 @@ $TC qdisc add dev $INDEV handle ffff: ingress
#
# *********************** AF41 ***************************
#AF41 (DSCP 0x22) from is passed on with a tcindex value 1
-#if it doesnt exceed its CIR/CBS + PIR/EBS
+#if it doesn't exceed its CIR/CBS + PIR/EBS
#policer 1 is used.
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \
@@ -90,7 +90,7 @@ drop flowid :3
#
# *********************** AF42 ***************************
#AF42 (DSCP 0x24) from is passed on with a tcindex value 2
-#if it doesnt exceed its CIR/CBS + PIR/EBS
+#if it doesn't exceed its CIR/CBS + PIR/EBS
#policer 2 is used. Note that this is shared with the AF41
#
#
@@ -119,7 +119,7 @@ drop flowid :3
# *********************** AF43 ***************************
#
#AF43 (DSCP 0x26) from is passed on with a tcindex value 3
-#if it doesnt exceed its CIR/CBS + PIR/EBS
+#if it doesn't exceed its CIR/CBS + PIR/EBS
#policer 3 is used. Note that this is shared with the AF41 and AF42
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 13 u32 \
@@ -134,7 +134,7 @@ drop flowid :3
## *********************** BE ***************************
##
## Anything else (not from the AF4*) gets discarded if it
-## exceeds 1Mbps and by default goes to BE if it doesnt
+## exceeds 1Mbps and by default goes to BE if it doesn't
## Note that the BE class is also used by the AF4* in the worst
## case
##
diff --git a/examples/diffserv/Edge32-cb-chains b/examples/diffserv/Edge32-cb-chains
index 804fad19..88ee2cea 100644
--- a/examples/diffserv/Edge32-cb-chains
+++ b/examples/diffserv/Edge32-cb-chains
@@ -50,7 +50,7 @@ $TC qdisc add dev $INDEV handle ffff: ingress
############################################################
#
# anything with fw tag of 1 is passed on with a tcindex value 1
-#if it doesnt exceed its allocated rate (CIR/CBS)
+#if it doesn't exceed its allocated rate (CIR/CBS)
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 1 handle 1 fw \
$meter1 \
@@ -80,7 +80,7 @@ $meter3a \
drop flowid 4:3
#
# Anything else (not from the subnet 10.2.0.24/24) gets discarded if it
-# exceeds 1Mbps and by default goes to BE if it doesnt
+# exceeds 1Mbps and by default goes to BE if it doesn't
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 7 handle 2 fw \
$meter5 \
diff --git a/examples/diffserv/Edge32-cb-u32 b/examples/diffserv/Edge32-cb-u32
index cc2ebb40..54494137 100644
--- a/examples/diffserv/Edge32-cb-u32
+++ b/examples/diffserv/Edge32-cb-u32
@@ -50,7 +50,7 @@ $TC qdisc add dev $INDEV handle ffff: ingress
# NOTE: tcindex 1 maps to AF41, 2->AF42, 3->AF43, 4->BE
#
#anything from subnet 10.2.0.2/24 is passed on with a tcindex value 1
-#if it doesnt exceed its CIR/CBS + PIR/EBS
+#if it doesn't exceed its CIR/CBS + PIR/EBS
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \
match ip src 10.2.0.0/24 $meter1 \
@@ -82,7 +82,7 @@ drop flowid :3
#
#
# Anything else (not from the subnet 10.2.0.24/24) gets discarded if it
-# exceeds 1Mbps and by default goes to BE if it doesnt
+# exceeds 1Mbps and by default goes to BE if it doesn't
#
$TC filter add dev $INDEV parent ffff: protocol ip prio 7 u32 \
match ip src 0/0 $meter5 \
diff --git a/examples/diffserv/regression-testing b/examples/diffserv/regression-testing
index 0ec705c0..d50f4c8a 100644
--- a/examples/diffserv/regression-testing
+++ b/examples/diffserv/regression-testing
@@ -1,6 +1,6 @@
These were the tests done to validate the Diffserv scripts.
-This document will be updated continously. If you do more
+This document will be updated continuously. If you do more
thorough validation testing please post the details to the
diffserv mailing list.
Nevertheless, these tests should serve for basic validation.