Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > NZ Computing > Deliberately slow network speed

Reply
Thread Tools

Deliberately slow network speed

 
 
Matthew Strickland
Guest
Posts: n/a
 
      02-23-2005
Hey all,

Is there a tool to deliberately slow down network speed, add latency, reduce
bandwidth etc? Wanting to run it on a test server for reliability and sample
field testing of database going to be used in a WAN enviroment.

And while im here - is there such a thing as 1024x768 native 17" LCD screen?
As ive got a few 1280x1024 ones but this resolution is just too small on a
17" screen. - Even changing font size isnt good enough. Changing DPI causes
problems with too many programs, and cheap 19" LCD's look terrible!

Cheers all

Matt


 
Reply With Quote
 
 
 
 
Mark Cranness
Guest
Posts: n/a
 
      02-23-2005
"Matthew Strickland" <> wrote in
news:8LSSd.3709$:

> Is there a tool to deliberately slow down network speed, add
> latency, reduce bandwidth etc? Wanting to run it on a test
> server for reliability and sample field testing of database
> going to be used in a WAN enviroment.


www.netlimiter.com reduces bandwidth for Windows.
 
Reply With Quote
 
 
 
 
BTMO
Guest
Posts: n/a
 
      02-23-2005

"Matthew Strickland" <> wrote

> Is there a tool to deliberately slow down network speed, add latency,
> reduce
> bandwidth etc?


yeah, it is called "bitstream"




 
Reply With Quote
 
~misfit~
Guest
Posts: n/a
 
      02-23-2005
Matthew Strickland wrote:
> Hey all,
>
> Is there a tool to deliberately slow down network speed, add latency,
> reduce bandwidth etc?


Yeah but I think Telecom have the patent on it and aren't sharing. They're
using it for UBS traffic.
--
~misfit~



----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
 
Reply With Quote
 
-=rjh=-
Guest
Posts: n/a
 
      02-23-2005
Matthew Strickland wrote:
> Hey all,
>
> Is there a tool to deliberately slow down network speed, add latency, reduce
> bandwidth etc? Wanting to run it on a test server for reliability and sample
> field testing of database going to be used in a WAN enviroment.


Yeah, it is called UBS
 
Reply With Quote
 
E.
Guest
Posts: n/a
 
      02-23-2005
Matthew Strickland wrote:

> Hey all,
>
> Is there a tool to deliberately slow down network speed, add latency, reduce
> bandwidth etc? Wanting to run it on a test server for reliability and sample
> field testing of database going to be used in a WAN enviroment.


You can easily guesstimate:
Run the app in a 100mbit environment and note start times, response
times etc.
Say it takes 14 seconds to start, 4 seconds to respond.

The calculate WAN bandwidth - encryption (knock off a 3rd).
e.g. 1.5mbs *symmetric* will mean 1 mbit bandwidth.

Difference in bandwith is 100 times.

Therefore 14 secs * 100 = 1400 secs to start, 4 *100 = 400 secs to
respond. This is *not* gospel, merely indictive.

You may wish to look at terminal services or telnet etc over VPN/WAN as
an alternative.
E.



 
Reply With Quote
 
Dave - Dave.net.nz
Guest
Posts: n/a
 
      02-23-2005
Matthew Strickland wrote:

> Hey all,
>
> Is there a tool to deliberately slow down network speed, add latency, reduce
> bandwidth etc? Wanting to run it on a test server for reliability and sample
> field testing of database going to be used in a WAN enviroment.
>
> And while im here - is there such a thing as 1024x768 native 17" LCD screen?
> As ive got a few 1280x1024 ones but this resolution is just too small on a
> 17" screen. - Even changing font size isnt good enough. Changing DPI causes
> problems with too many programs, and cheap 19" LCD's look terrible!


our dell ones at work do both 1280x1024 and 1024x768 nativly(as in looks
good)... the HP 17s dont, just 1280x1024

I hadn't seen them do two correctly, so yeah, I was impressed.

--
Dave.net.nz
reply addy is e
nice! http://www.dave.net.nz/images/link.jpg
 
Reply With Quote
 
Matthew Poole
Guest
Posts: n/a
 
      02-23-2005
In article <8LSSd.3709$>, "Matthew Strickland" <> wrote:
>Hey all,
>
>Is there a tool to deliberately slow down network speed, add latency, reduce
>bandwidth etc? Wanting to run it on a test server for reliability and sample
>field testing of database going to be used in a WAN enviroment.
>

*SNIP*

FreeBSD's dummynet and ipfw pairing will do all that and more. Can
introduce random packet loss, latency, congestion, you name it. Plenty
of examples out there on how to configure up what you're after. All you
need is a box with two NICs. It doesn't even need to be a flash box.

--
Matthew Poole Auckland, New Zealand
"Veni, vidi, velcro...
I came, I saw, I stuck around"

My real e-mail is mattATp00leDOTnet
 
Reply With Quote
 
Shane (aka froggy)
Guest
Posts: n/a
 
      02-23-2005
On Wed, 23 Feb 2005 16:28:04 +1300, Matthew Strickland wrote:

> Hey all,
>
> Is there a tool to deliberately slow down network speed, add latency, reduce
> bandwidth etc? Wanting to run it on a test server for reliability and sample
> field testing of database going to be used in a WAN enviroment.



theres a thread about this on comp.unix.bsd.openbsd.misc
(although I'm willing to bet OpenBSD isnt your OS)
I'll copy and paste the relevant bits anyway
<Q>
The user of this machine often sends large emails (often 3 meg
or more) and when this happens , the rest of the network chokes. is
there a way I can limit the upload speed of a particular machine to
say 4k/s max? Does PF have some feature for this?!?

Yes. altq is what you are looking for.

If all you want to do is limit the bandwidth for a simgle machine, you
can set up a default queue with total bandwidth equal to total outgoing
capacity, then set up a subqueue with the max bandwidth you want that
machine to use, then write one or more rules which pass the traffic from
that machine on the smaller queue. Let the rest of the traffic you pass
use the default queue.

Whether you NAT or not should not affect your queueing. Your pass rule will
be something like

pass from $bandwidth_hogger to any port $allowed_ports \
keep state queue thin_pipe
pass from $rest_of_lan to any port $allowed_ports \
keep state queue big_pipe

- assuming of course you have defined bandwidth_hogger, allowed_ports,
rest_of_lan and the queues thin_pipe, big_pipe already.

My PF tutorial (http://www.bgnett.no/~peter/pf/en/) contains a few
reasonably clear examples lifted from real world use which are slightly
less complex than the ones in the excellent PF user guide.

HTH

--

Hardware, n.: The parts of a computer system that can be kicked

 
Reply With Quote
 
Benji Thorn
Guest
Posts: n/a
 
      02-24-2005
Not to mention Orcon for jeez well, anything...

~misfit~ wrote:
> Matthew Strickland wrote:
>
>>Hey all,
>>
>>Is there a tool to deliberately slow down network speed, add latency,
>>reduce bandwidth etc?

>
>
> Yeah but I think Telecom have the patent on it and aren't sharing. They're
> using it for UBS traffic.
> --
> ~misfit~
>
>
>
> ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
> http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
> ----= East and West-Coast Server Farms - Total Privacy via Encryption =----

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Blast to the past: Digital deliberately erasing the advancesof 100 years! Laszlo Lebrun Digital Photography 5 04-18-2012 02:07 PM
Re: Blast to the past: Digital deliberately erasing the advances of100 years! Whisky-dave Digital Photography 2 04-17-2012 02:43 AM
jpg deliberately degraded lplook@hotmail.com Digital Photography 35 01-30-2007 08:39 PM
Apparently, "Microsoft have deliberately sabotaged Jimchip Computer Support 0 04-17-2006 12:43 AM
speed speed speed a.metselaar Computer Support 14 12-30-2003 03:34 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57