Questions tagged [bandwidth]

Amount of data that can be transferred in a given unit of time.

Network bandwidth capacity

Bandwidth sometimes defines the net bit rate (aka. peak bit rate, information rate or physical layer useful bit rate), channel capacity, or the maximum throughput of a logical or physical communication path in a digital communication system. For example, bandwidth tests measure the maximum throughput of a computer network. The reason for this usage is that according to Hartley's law, the maximum data rate of a physical communication link is proportional to its bandwidth in hertz, which is sometimes called frequency bandwidth, spectral bandwidth, RF bandwidth, signal bandwidth or analog bandwidth.

Network bandwidth consumption

Bandwidth in bit/s may also refer to consumed bandwidth, corresponding to achieved throughput or goodput, i.e., the average rate of successful data transfer through a communication path. This sense applies to concepts and technologies such as bandwidth shaping, bandwidth management, bandwidth throttling, bandwidth cap, bandwidth allocation (for example bandwidth allocation protocol and dynamic bandwidth allocation), etc. A bit stream's bandwidth is proportional to the average consumed signal bandwidth in Hertz (the average spectral bandwidth of the analog signal representing the bit stream) during a studied time interval.

Channel bandwidth may be confused with data throughput. A channel with x bps may not necessarily transmit data at x rate, since protocols, encryption, and other factors can add appreciable overhead. For instance, a lot of internet traffic uses the transmission control protocol (TCP) which requires a three-way handshake for each transaction, which, though in many modern implementations is efficient, does add significant overhead compared to simpler protocols. In general, for any effective digital communication, a framing protocol is needed; overhead and effective throughput depends on implementation. Actual throughput is less than or equal to the actual channel capacity plus implementation overhead.

1021 questions
3
votes
1 answer

View same statistics as "Local Area Connection" Status gui from command line

First time poster here. I am trying to get the current bandwidth usage for Windows Server 2008R2 via command line. I've tried netstat -e but this gives me very different numbers than the actual bytes that have been transferred. The stats I'd like…
3
votes
1 answer

Measuring traffic with node.js http-proxy

I wrote a small reverse proxy for hosting my applications on the same computer using http and node-http-proxy modules. For example: I have: proxy running on port 80 website1.com running on port 3000 website2.com running on port 3001 website3.com…
WoLfulus
  • 1,948
  • 1
  • 14
  • 21
3
votes
1 answer

Routing Multiple USB 2.0 connections through a USB 3.0 connection

Is there any USB 3.0 hub or device that multiple USB 2.0 devices can be connected to and still retain the maximum USB 2.0 bandwidth for each device by utilizing the higher bandwidth of USB 3.0? These devices exist for USB2.0/1.1 interfacing (they…
user1414031
  • 73
  • 1
  • 6
3
votes
1 answer

How do I measure the cost of a T-SQL query on the wire?

How can I calculate the size of a T-SQL query in bytes transfered across the network? I know I can approximate it by examining data types of columns (varchars are an interesting twist though), but are there tools that'll give me the number of bytes…
Allain Lalonde
  • 91,574
  • 70
  • 187
  • 238
3
votes
1 answer

IP banning via .htaccess not working

Liteserver on a Shared access host here. I'm trying to get rid of a lot of bots who waste my resources for nothing. I can successfully restrict access to some of them using a specific User Agent, but I can't ban their IP addresses, together with…
flapane
  • 543
  • 2
  • 8
  • 21
3
votes
1 answer

How to increase the sampling rate of accelerometer to insanely high rates(2kHz) in android?

I am new to android. I am currently working on a project which needs me to measure the acceleration in the range of 1Khz. From the BMA150 datasheet, I came to know that the maximum Bandwidth supported by it is somewhere near 1Khz. But android…
Vivek
  • 85
  • 8
3
votes
1 answer

Bandwidth control for Webpages using php

I want to set the bandwidth to the webpages using php. I got some php code to set the bandwidth for downloading files but i want to set the bandwidth to the web pages. Is it possible to set the bandwidth to the web pages using php? If possible,…
3
votes
1 answer

What is the best way to fetch RSS, in real time or almost

I would like to know what's the best way to fetch RSS feeds in real time without having to download the entire feed even when it hasn't been changed. I don't really mind the language, I'm just looking for the best way to do that.
Roch
  • 21,741
  • 29
  • 77
  • 120
3
votes
2 answers

how to aws bandwidth report for a year?

I need to calculate AWS Bandwidth usage for an year , from the account activity i cannot see Data transfer option to get the statistics , How can it get it done ?
mbdvg
  • 2,614
  • 3
  • 21
  • 39
3
votes
0 answers

How to calculate bandwidth consumption in pjsip

I see that Jitsi (which uses jain-sip) can display bandwidth information when a call is in progress. How to get bandwidth information in pjsip ? Are there any callback or how to calculate it ? P/S: By bandwidth I means the actual bandwidth used by…
onmyway133
  • 45,645
  • 31
  • 257
  • 263
3
votes
1 answer

How to get the WCF 4.0 Restful response bandwidth consumption?

I have a WCF 4.0 restful application hosted on Windows Azure cloud service and I need to know the size of the outgoing HTTP message before it's sent back to the client. I need that because I want to bill my service customers by bandwidth…
3
votes
2 answers

Java high speed udp traffic packet receiving for bandwidth testing

I am trying to build a bandwidth testing tool, kind of like IPerf but in java, I seem to be getting more packet loss than expected however at slightly higher bandwidths (starts at about 30-40Mb/s) and I was hoping someone could possibly point out…
3
votes
1 answer

Measuring bandwidth/speed in several java sockets?

I have coded a server in Java that will have several clients connected to it. I want to be able to see how much data is sent to each client to be able to make decisions like allowing more clients or decreasing them, or even to increase/decrease the…
efaj
  • 925
  • 1
  • 12
  • 23
3
votes
3 answers

node.js calculating bandwidth usage by domain

How can I monitor the bandwidth usage of each domain using node.js as the web server? Does anyone know of an API call I haven't come across to do this? Or a module or another method which others have used in a multi-tenant environment where you are…
Matt
  • 468
  • 6
  • 14
2
votes
3 answers

Measure SAAS App Bandwidth Usage

I am in the process of building a Ruby on Rails based SaaS app. The app is being hosted on AWS (Amazon). I need to measure the bandwidth usage by each customer for billing and customer segmenting. The customers could be identified by their Urls.…