tcgui icon indicating copy to clipboard operation
tcgui copied to clipboard

A lightweight Python-based Web-GUI for Linux traffic control (tc) to set, view and delete traffic shaping rules.

Results 2 tcgui issues
Sort by recently updated
recently updated
newest added

I have implemented the fix that @shawndcorn made in #21. I just added the single line adding the sort function. Thanks @shawndcorn !

I have a number of VLAN interfaces and they were always out of order. I fixed it by modifying the get_active_rules() with the following sort method: rules.sort(key=lambda x: x["name"]) Now...