Skype (too much packets)
But I also never had too much patiente to reverse engineer it - but someone already did it, i believe with an older protocol, and its being sued :-), so decide to do some simple iptables rule to stop that annoying (and too much) traffic:
so, create a user called skype, then add in its .bashrc
export DISPLAY=":0.0"
alias skype='xhost +local: && su skype -c skype'
so now you have a skype user to run skype:
[root@natasha ~]# id skype
uid=505(skype) gid=505(skype)
and the command line for execute it:
alias skype='xhost +local: && sudo -u skype /usr/bin/skype'
this will stop all skype traffic, but we dont want this...
iptables -I OUTPUT -p all -m owner --uid-owner 505 -j DROP
so I let for you a bit more research for allow each nth packet or random packet or just a certain protocol with a rate limit for skype :-)





