> -----Original Message-----
> From: Mary Christie Generalao [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 13, 2000 6:38 PM
> To: [EMAIL PROTECTED]
> Subject: [plug] advanced linux router
> 
> 
> Hi all,
> 
> We are currently considering implementing bandwidth 
> management in our US
> network.. presently, we're using cisco routers which we can 
> possibly use for
> shaping.. we're also considering packetshaper.. does anyone, 
> especially from
> ISPs have experience using them (cisco, packetshaper)?  How 
> about a linux

Cisco can do it. Please read the following links.
http://www.cisco.com/warp/public/cc/pd/iosw/iore/tech/osfea_wp.htm
http://www.cisco.com/warp/public/cc/cisco/mkt/iworks/tech/cq_wp.htm
http://www.cisco.com/univercd/cc/td/doc/product/rtrmgmt/ciscoasu/class/qpm1_
1/using_qo/c1plan.htm
http://www.cisco.com/warp/public/cc/pd/ibsw/ibdlsw/prodlit/dlsw5_rg.htm


> router? I believe linux's advanced router feature(iproute2) 
> is capable of

You can do it in Linux. You will have to recompile your kernel to support
ToS.
And you can make use of ipchains to traffic shape. Below is an example

#--------------------------------------------------------------------
# Type of Service (TOS) Settings
#--------------------------------------------------------------------
# Though very FEW ISPs do anything with the TOS bits, I thought you'd
# like to see it.  In therory, you can tell the Internet how to handle
# your traffic, be it sensitive to delay, throughput, etc.
#
#       -t 0x01 0x10 = Minimum Delay
#       -t 0x01 0x08 = Maximum Throughput
#       -t 0x01 0x04 = Maximum Reliability
#       -t 0x01 0x02 = Minimum Cost
#
# Example:
#
# Settings for FTP, SSH, and TELNET
#       ipchains -A output -p tcp -d 0/0 21:23  -t 0x01 0x10
#
# Settings for WWW
#       ipchains -A output -p tcp -d 0/0 80 -t 0x01 0x10

I haven't actually tried it. There is another tool (shapecfg) but I haven't
tried it. Just read the HOWTO or MANPAGE.


-
Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph
To leave: send "unsubscribe" in the body to [EMAIL PROTECTED]

Reply via email to