Throttling bandwidth for Apache on an Xserve (Mac OSX Server 10.5.8)

I was wondering if anybody has any solutions for throttling bandwidth on an Xserve (running Apache 2); I’m trying to use mod_bw (http://ivn.cl/category/apache/#bandwidth), but have been running into problems. I can build the right module using apxs, but I run into problems when I try to restart Apache (it says that mod_bw.so is compiled for … Read more

Apache ( OHS 12 c) for managing keep-alive sessions and provide a throttle for WebLogic protection

I need to use OHS 12C ( apache 2.2) for throttling purpose.I’m using OHS as proxy and forwarding request to weblogic server. The requirement is to limit the concurrent connection to weblogic server to 512 and if OHS get more than 512 request then put those requests in backlog queue. Once the app server is … Read more

Possible causes for a single throttled UDP port

I am running a quake 3 engine based game server (Wolfenstein: Enemy Territory) on Ubuntu 16.04 and I’ve ran into a fairly puzzling issue. A week ago players started having issues when connecting to the server. Basically the server tries to send a snapshot of the game state on client connect but this fails hundreds … Read more

Using trickle/trickled to limit bandwidth throughput of iperf3

I’m doing some throughput testing on some radio units that have narrow channel bandwidth settings (for example sub 250KHz bandwidth). During my testing of iperf3, I noticed that the slowest speed it would ever transfer at despite setting a bandwidth limit on the command-line for iperf3 was 655 KB/sec (even if the command-line argument was … Read more

Trying to throttle a device with Cgroups. Error message says “No such device” when the device exists. What could be wrong?

Instructions I followed: https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v1/blkio-controller.html Script I ran: BYTES_PER_SEC=1048576; MAJOR=259 MINOR=1 echo “device name:” udevadm info -rq name /sys/dev/block/$MAJOR:$MINOR echo “” echo “device numbers:” echo $MAJOR:$MINOR; echo “” sudo mount -t cgroup -o blkio none /sys/fs/cgroup/blkio; sudo echo “COMMAND TO BE EXECUTED:”; sudo echo “$MAJOR:$MINOR $BYTES_PER_SEC”; sudo echo “$MAJOR:$MINOR $BYTES_PER_SEC” > /sys/fs/cgroup/blkio/blkio.throttle.read_bps_device sudo echo “$MAJOR:$MINOR $BYTES_PER_SEC” … Read more

Detecting proxy server connections

We are having issues with users using proxy servers and causing trouble on our website. Is there an updated SQL list of proxy servers, indexed by IP, available anywhere so that we can query it and prevent access to those using proxy servers? Answer You could look for the X-Forwarded-For HTTP header but of course … Read more