Guest User

Untitled

a guest
Jun 23rd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.63 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # The Ultimate Setup For Your Internet Connection At Home
  4. #
  5. #
  6. # Set the following values to somewhat less than your actual download
  7. # and uplink speed. In kilobits
  8. #DOWNLINK=999999999
  9. #UPLINK=1680
  10. UPLINK=1300
  11. DEV=eth0
  12.  
  13. # clean existing down- and uplink qdiscs, hide errors
  14. tc qdisc del dev $DEV root    2> /dev/null > /dev/null
  15. tc qdisc del dev $DEV ingress 2> /dev/null > /dev/null
  16.  
  17. ###### uplink
  18.  
  19. # install root CBQ
  20.  
  21. #tc qdisc add dev $DEV root handle 1: cbq avpkt 1000 bandwidth 1000mbit
  22. tc qdisc add dev $DEV root handle 1: htb default 20
  23.  
  24. ###
  25. #tc class add dev $DEV parent 1: classid 1:1 cbq rate 1000mbit allot 1600 prio 0 bounded isolated
  26. tc class add dev $DEV parent 1: classid 1:1 htb rate 1000mbit
  27. #tc class add dev $DEV parent 1:1 classid 1:2 cbq rate 1000mbit allot 1600 prio 0 bounded isolated
  28. tc class add dev $DEV parent 1:1 classid 1:2 htb rate 1000mbit
  29. #tc filter add dev $DEV parent 1:0 protocol ip prio 0 u32 match ip dst 192.168.1.0/24 flowid 1:2
  30. tc filter add dev $DEV parent 1:0 protocol ip prio 0 u32 match ip dst 192.168.1.0/24 flowid 1:2
  31. ###
  32.  
  33. # shape everything at $UPLINK speed - this prevents huge queues in your
  34. # DSL modem which destroy latency:
  35. # main class
  36.  
  37. #tc class add dev $DEV parent 1:1 classid 1:9 cbq rate ${UPLINK}kbit allot 1500 prio 5 bounded isolated
  38. tc class add dev $DEV parent 1:1 classid 1:9 htb rate ${UPLINK}kbit
  39.  
  40. # high prio class 1:10:
  41.  
  42. #tc class add dev $DEV parent 1:9 classid 1:10 cbq rate ${UPLINK}kbit allot 1600 prio 1 avpkt 1000
  43.  
  44. tc class add dev $DEV parent 1:9 classid 1:10 htb rate ${UPLINK}kbit prio 1
  45.  
  46. # bulk and default class 1:20 - gets slightly less traffic,
  47. #  and a lower priority:
  48.  
  49. #tc class add dev $DEV parent 1:9 classid 1:20 cbq rate $[9*$UPLINK/10]kbit allot 1600 prio 2 avpkt 1000
  50. tc class add dev $DEV parent 1:9 classid 1:20 htb rate $[9*$UPLINK/10]kbit prio 2
  51.  
  52. # both get Stochastic Fairness:
  53. tc qdisc add dev $DEV parent 1:2 handle 2: sfq perturb 10
  54. tc qdisc add dev $DEV parent 1:10 handle 10: sfq perturb 10
  55. tc qdisc add dev $DEV parent 1:20 handle 20: sfq perturb 10
  56.  
  57. # start filters
  58. # TOS Minimum Delay (ssh, NOT scp) in 1:10:
  59. tc filter add dev $DEV parent 1:0 protocol ip prio 10 u32 \
  60.       match ip tos 0x10 0xff  flowid 1:10
  61.  
  62. # ICMP (ip protocol 1) in the interactive class 1:10 so we
  63. # can do measurements & impress our friends:
  64. tc filter add dev $DEV parent 1:0 protocol ip prio 11 u32 \
  65.         match ip protocol 1 0xff flowid 1:10
  66.  
  67. # To speed up downloads while an upload is going on, put ACK packets in
  68. # the interactive class:
  69.  
  70. tc filter add dev $DEV parent 1: protocol ip prio 12 u32 \
  71.    match ip protocol 6 0xff \
  72.    match u8 0x05 0x0f at 0 \
  73.    match u16 0x0000 0xffc0 at 2 \
  74.    match u8 0x10 0xff at 33 \
  75.    flowid 1:10
  76.  
  77. # rest is 'non-interactive' ie 'bulk' and ends up in 1:20
  78.  
  79. #tc filter add dev $DEV parent 1:0 protocol ip prio 0 u32 match ip dst 192.168.1.0/24 flowid 1:2
  80. tc filter add dev $DEV parent 1:0 protocol ip prio 0 u32 match ip dst 192.168.1.0/24 flowid 1:2
  81.  
  82. #tc filter add dev $DEV parent 1: protocol ip prio 13 u32 \
  83. #   match ip dst 0.0.0.0/0 flowid 1:20
  84.  
  85.  
  86.  
  87. ########## downlink #############
  88. # slow downloads down to somewhat less than the real speed  to prevent
  89. # queuing at our ISP. Tune to see how high you can set it.
  90. # ISPs tend to have *huge* queues to make sure big downloads are fast
  91. #
  92. # attach ingress policer:
  93.  
  94. #tc qdisc add dev $DEV handle ffff: ingress
  95.  
  96. # filter *everything* to it (0.0.0.0/0), drop everything that's
  97. # coming in too fast:
  98.  
  99. #tc filter add dev $DEV parent ffff: protocol ip prio 50 u32 match ip src \
  100. #   0.0.0.0/0 police rate ${DOWNLINK}kbit burst 10k drop flowid :1
Add Comment
Please, Sign In to add comment