]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
examples: fix spelling errors
authorStephen Hemminger <stephen@networkplumber.org>
Thu, 18 Oct 2018 20:18:56 +0000 (13:18 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Thu, 18 Oct 2018 20:18:56 +0000 (13:18 -0700)
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
examples/cbq.init-v0.7.3
examples/diffserv/Edge2
examples/diffserv/Edge31-ca-u32
examples/diffserv/Edge31-cb-chains
examples/diffserv/Edge32-ca-u32
examples/diffserv/Edge32-cb-chains
examples/diffserv/Edge32-cb-u32
examples/diffserv/regression-testing

index 66448d88f0053cfc0a79dd5684fab46797a2b620..ec7839481fb6f928a97f10b121f859833a7fde28 100644 (file)
 #      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
 #
 # 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"
 #
 # 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.
 #
index 2f78da24e1e77aa4af5c5015c7fd864dc12082b4..f81f510fc06fdd8c6f8329c6c6b06ae3c86b7f14 100644 (file)
@@ -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
 
 ############################################################ 
index 25e6c0b1039993029e8e2e6f1ea8d5c2d9596e17..7344851aec3219ca13c8c4a00d599a554ca049cf 100644 (file)
@@ -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
 #
index d7faae987ecec1b22006df77971d6b2a78a1591a..49c396bc9af7d1f50585cc76f28fca3c19f37abd 100644 (file)
@@ -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 \
index edf21e4308fa984ee8a837902154c587844671eb..9d3ccd07796c8a08213fe25abb76a0949f946bba 100644 (file)
@@ -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
 ##
index 804fad196e652d7a4805d09f8247892c5b40242e..88ee2ceaf57ee66e9aed2fc5c379829b880769cf 100644 (file)
@@ -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 \
index cc2ebb40a74841f8bfc25483d922f8a1d2f99165..544941376f92932de0e153042e7f9febf7f0d34e 100644 (file)
@@ -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 \
index 0ec705c09129a089cbc6616bec44a28b5dd48b9e..d50f4c8a3b5a35e846e84e120b75352ba1bd40f6 100644 (file)
@@ -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.