# Change this to your link bandwidth # (for cable modem, DSL links, etc. put the maximal bandwidth you can # get, not the speed of a local Ethernet link) REAL_BW='10Mbit'
# Change this to the bandwidth you want to allocate to FTP. # We're talking about megabits, not megabytes, so 80Kbit is # 10 Kilobytes/s FTP_BW='7200Kbit' //总带宽
# Change this to your physical network device (or 'ppp0') NIC='eth0'
# Change this to the ports you assigned for passive FTP FTP_PORT_LOW="10000" //passive端口低限 FTP_PORT_HIGH="11000" //passive端口上限 tc qdisc del dev "$NIC" root 2> /dev/null //清除tc队列中关于网卡的设置 //(hunreal修改)