On Mon, Jan 04, 2016 at 05:30:26PM -0300, Renaud OLGIATI wrote: > Is there a way to config the system so as to limit the bandwidth that will be > used by the (wifi) network interface ? > > Debian Wheezy, sysvinit. >
Yes, certainly. https://wiki.debian.org/TrafficControl The syntax isn't notably different between wheezy and jessie. You might, for example, do: #tc qdisc add dev wlan0 root tbf rate 5mbit latency 15ms burst 1540 These things can be set in /etc/network/interfaces as post-up commands. -dsr-