Skip to main content

Posts

Showing posts from July, 2018

Bandwidth Limiting Big Files Download - Mikrotik

Here is one of my queues with burst, setup using Winbox. All settings are on the General Tab. Settings are given as tx/rx (upload/download). Name - 2.201/32 Target Address - 192.168.2.201/32 Limit At - 65536/131072 Max Limit - 262144/524288 Burst Limit - 393216/786432 Burst Threshold - 262144/524288 Burst Time - 90/180 This is a Simple queue for the user at IP 192.168.2.201. He is given a basic speed of 64k upload and 128k download. According to the MT manual, this is a guaranteed minimum speed, provided enough bandwidth is available. His maximum sustained speed is 256k upload and 512k download. His speed is allowed to burst as high as 384k upload and 768k download. If his speed goes above the threshold (256/512) and stays there, the burst timer starts. After the allowed time, 90sec for upload and 180sec for download, his speed is throttled back from the burst limit (384/768) to the max limit (256/512) and held there until the traffic flow stops. When the flow stops, the timer...

WSO2Torial: Setting up WSO2 with a valid SSL certificate

WSO2  products can be downloaded from the WSO2 website, installed in a matter of seconds after which you can try out the software. No fees, no contracts and …. no lawyers. What you’ll find when you start up any WSO2 product is that the browser will balk on the certificate that is used to encrypt the connection. This is a so called self-signed certificate and is deemed to be less secure then one from a Certificate authority. How do Certificates work? Without going into too much detail, certificates work using a trust mechanism. Certificates are issued by a so called Certificate Authority like the companies Comodo or Symantec. A certificate issued by them should be trusted since the trust relationship with CA’s is beyond discussion.  The certificate issued guarantees that the site is indeed who it claims to be. Certificates in this sense are used to encrypt the secure https traffic to and from your WSO2 products. To set up HTTPS you will need a valid certificate t...