LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Bandwidth Control (https://www.linuxquestions.org/questions/linux-networking-3/bandwidth-control-452387/)

satish 06-07-2006 08:00 AM

Bandwidth Control
 
i have redhat 9,0 linux proxy server with 256 kbps line

eth0 202.88.210.4 external
eth1 192.168.1.2 internal

i want to shape bandwidth for each ip,below like this

192.168.1.2 10Kbps
192.168.1.3 10Kbps
192.168.1.4 10Kbps
192.168.1.5 50Kbps

How do i do that,what neccessary software to install for bandwidth shaping

asciipixel 06-07-2006 08:31 AM

smoothwall
 
I recomment looking at smoothwall's forums under the homebrew section ...

dimsh 06-07-2006 08:35 AM

user tc (traffic control) it is part of lartc (Linux Advanced Routing & Traffic Control).

it may be somehow long to configure, this page demonstrate typical usage
Code:

http://www.experts-exchange.com/Networking/Linux_Networking/Q_20819743.html
Regards.

bicoba 06-07-2006 09:25 AM

Simply use 'delay pools options' on your squid.conf

For more details :
http://www.squid-cache.org/Doc/FAQ/FAQ-19.html#ss19.8
http://squid-docs.sourceforge.net/la...tml/x1982.html

bicoba 06-07-2006 09:33 AM

DHCP pools
 
Hi,
I would like to extand my DHCP pools.
My dhcpd.conf is like this :

ddns-update-style none;
ddns-updates off;
default-lease-time 86400;
max-lease-time 86400;

subnet 10.0.0.0 netmask 255.255.0.0 {
range 10.0.0.0 10.0.0.200;
option broadcast-address 10.0.255.255;
option routers 10.0.0.1;
option domain-name-servers x.x.x.x
}


I would like to use also the network 10.0.1.0/16, 10.0.2.0/16, ....with the same dhcp. How could I do it ?

Thanks

bicoba 06-07-2006 09:35 AM

Sorry, it is a mistake


All times are GMT -5. The time now is 04:18 AM.