Re: [nlug] How to limit bandwidth to a particular device

2014-02-19 Thread Jonathan Sheehan
On Wed, Feb 19, 2014 at 1:16 PM, Jack Coats wrote: > Related to the original question, > > Has anyone seen a good online tutorial for configuring QoS to reduce > bandwidth use? Just curious. Sure, here's a long and very detailed introductory tutorial I liked a lot: http://tomatousb.org/tut:using

Re: [nlug] How to limit bandwidth to a particular device

2014-02-19 Thread Steven S. Critchfield
Right, QoS is about prioritizing packets so that certain streams see a better pipe. It does not however traffic shape. That would require a bit more effort and some work like in the linux kernel. http://www.tldp.org/HOWTO/html_single/Traffic-Control-HOWTO/#o-tokens - Original Message -

Re: [nlug] How to limit bandwidth to a particular device

2014-02-19 Thread Jack Coats
Related to the original question, Has anyone seen a good online tutorial for configuring QoS to reduce bandwidth use? Just curious. QoS seems to be focused on ensuring good bandwidth availability, not limiting it, but that is just my novice perspective talking. -- -- You received this message

Re: [nlug] How to limit bandwidth to a particular device

2014-02-19 Thread Steven S. Critchfield
- Original Message - > I found that the Zonet router I am using (no longer made) has a > 'bandwidth' option, where it will limit bandwidth to particular IP > addresses, and even on DHCP, you can bind an ether address to a > particular DHCP IP adresse, giving a 'fixed' address to equipment.

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Jack Coats
I found that the Zonet router I am using (no longer made) has a 'bandwidth' option, where it will limit bandwidth to particular IP addresses, and even on DHCP, you can bind an ether address to a particular DHCP IP adresse, giving a 'fixed' address to equipment. Anyway, the bandwidth limiting optio

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Chris McQuistion
Do you need to limit the bandwidth to a particular amount that might coincide with Ethernet speed? For example, could you force a network interface card or port on a switch to run at 100 mbps or 10 mbps, thereby limiting consumption to the speed of the interface? This isn't ideal, but another off

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Blake Dunlap
TCP is designed to deal with this natively, and you can significantly influence how it acts if you understand the algorithm and control a point in the middle, especially if you control at least one end of the bottleneck. UDP presents a challenge if the bottleneck is above you inbound. What is the

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Steven S. Critchfield
Last time I looked at this problem, there are a couple ways to deal with it. On linux, you can drop packets from a device into a bucket, and then prioritize the buckets. This will give the bandwidth hogs all the bandwidth that is left over after all other traffic is handled. Of course you can

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread andrew mcelroy
Look for a QoS setting http://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/91790-pixasa7x-traffic-mgt.html Quality of Service setting would do exactly what you are looking for. What router do you have? On Tue, Feb 18, 2014 at 8:44 AM, Jack Coats wrote: > I have

Re: [nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Jon Moore
Depends on what we're working with. Personally, I've not found many consumer grade home routers that do per-device bandwidth control. However, I'm sure it can be done with a DIY Linux router. Maybe iptables + tc or something like that? Also pfSense has this capability as well. Then, of course

[nlug] How to limit bandwidth to a particular device

2014-02-18 Thread Jack Coats
I have a couple of devices that suck bandwidth, but I want to use them. They have no way of limiting the bandwidth on the device itself, and I can't figure out how to limit the bandwidth on my wifi router to just a few devices. Is there a way to limit bandwidth allowed to the devices? Other brain