| |
 |
|
|
Linux Forum Index » Linux Networking » tc to slow traffic to one port...
Page 1 of 1
|
| Author |
Message |
| dustmop... |
Posted: Wed Aug 20, 2008 5:32 am |
|
|
|
Guest
|
Hello All,
I'm trying to use tc to introduce a 5 second delay to connections to a
certain port on my machine - mainly to test the effect of latency on
an application. Here is the script I'm using:
#!/bin/bash
I=eth0
PORT=8887
tc qdisc del dev $I root
tc qdisc add dev $I handle 1: root htb
tc class add dev $I parent 1: classid 1:1 htb rate 100Mbps
tc qdisc add dev $I parent 1:1 handle 10: netem delay 5000ms
tc filter add dev $I protocol ip parent 1: prio 1 u32 match \
ip dport $PORT 0xffff flowid 10:
tc filter add dev $I protocol ip parent 1: prio 1 u32 match \
ip sport $PORT 0xffff flowid 10:
It runs without error, but I don't notify any delays, whether I hit
the port from my current machine or from another.
I already tried just slowing localhost like this:
#!/bin/bash
tc qdisc del dev lo root
tc qdisc add dev lo root netem delay 5000ms
and that worked great. However, I need to add this port restriction.
Is there anything wrong with my tc commands? Is the filter even being
run, and is there some place I can monitor what they are doing?
Thank you for your assistance. |
|
|
| Back to top |
|
| Andy Furniss... |
Posted: Thu Aug 21, 2008 6:04 pm |
|
|
|
Guest
|
dustmop wrote:
Quote: Hello All,
I'm trying to use tc to introduce a 5 second delay to connections to a
certain port on my machine - mainly to test the effect of latency on
an application. Here is the script I'm using:
#!/bin/bash
I=eth0
PORT=8887
tc qdisc del dev $I root
tc qdisc add dev $I handle 1: root htb
tc class add dev $I parent 1: classid 1:1 htb rate 100Mbps
tc qdisc add dev $I parent 1:1 handle 10: netem delay 5000ms
tc filter add dev $I protocol ip parent 1: prio 1 u32 match \
ip dport $PORT 0xffff flowid 10:
tc filter add dev $I protocol ip parent 1: prio 1 u32 match \
ip sport $PORT 0xffff flowid 10:
It runs without error, but I don't notify any delays, whether I hit
the port from my current machine or from another.
I already tried just slowing localhost like this:
#!/bin/bash
tc qdisc del dev lo root
tc qdisc add dev lo root netem delay 5000ms
and that worked great. However, I need to add this port restriction.
Is there anything wrong with my tc commands? Is the filter even being
run, and is there some place I can monitor what they are doing?
Thank you for your assistance.
The flowid should be 1:1
Andy. |
|
|
| Back to top |
|
| |
|
Page 1 of 1
All times are GMT - 5 Hours
The time now is Thu Dec 04, 2008 4:48 pm
|
|