There is now afile download serverofHTTP, which has currently limited the download speed ofsingle thread. The speed is200kb/sbut if the user usesmulti-threadingto download, such as Thunder. You can break through the limitations and achieve double the effect. May I ask howcentoscan limit the speed above?
You can use nginx’s limit_conn_module to limit the number of client IP connections.
The following is a simplified configuration:
limit_conn_zoneDefine a bucket that limits connections;$binary_remote_addrmeans to calculate the number of connections based on the client IP as the key;zone=addrDeclare the name of this bucket;limit_connexecutes a limit on the number of connections, and the followingaddris to call the previously configured bucket.