> > > 1. How do I list the configuration used? (I have included the script > below > > that was used). > >tc -s qdisc ls is the best you can do. Aghh! >Can you tcpdump -v -s 1500 when you are uploading? > >Otherwise, try figuring out which 'tc filter add' statement is sending your >ftp traffic to 1:10. Just delete tc filter statements from the script until >you see ftp go to 1:20. I ran TCP dump and see the following: 6:44:38.229976 213.123.200.246.10277 > 62.49.249.62.2394: . [tcp sum ok] 1164420368:1164421828(1460) ack 244583466 win 5840 (DF) [tos 0x10] (ttl 64, id 55961, len 1500) Well the problem is the packets have an incorrect TOS setting, so this is now easy to fix ;) Out of interest I didn't see 1:10 or 1:20 mentioned in the dump. Thanks for the ideas :) Mark