クライアントの帯域制限を Apache2 に含まれているモジュールでやってみる / Tried limite the client boundwidth rate limit with Bandwidth Rate Limiting for Clients of included module in Apache

https://httpd.apache.org/docs/2.4/mod/mod_ratelimit.html

Apache Module mod_ratelimit

Available Languages: en | fr
Description: Bandwidth Rate Limiting for Clients
Status: Extension
Module Identifier: ratelimit_module
Source File: mod_ratelimit.c
Compatibility: rate-initial-burst available in httpd 2.4.24 and later. Rate limiting proxied content does not work correctly up to httpd 2.4.33.

 

Socket sync communication test between PHP7 and Python3

 

 

UltraVNC が接続できなかった時に行った設定メモ

サーバー側 (接続される側) の設定

セキュリティ対策ツール Ver.11

設定

不正サイト/迷惑メール対策

ネットワーク対策

ファイアウォールチューナーを有効にする → 無効

例外設定

ファイル/フォルダ

vncserver を追加

Windows 10

コントロールパネル > システムとセキュリティ > Windows Defender ファイアウォール → 無効

IPアドレスの固定と電源オプションでスリープにしない設定も


コマンドラインからのサーバー実行について – 26 Mar 2019

バージョン

UltraVNC_1_2_24_X64_Setup.exe
UltraVNC_1_2_24_X86_Setup.exe

サービスとして実行しておくと、ユーザーアカウント制御 (UAC; User Account Control) の画面が出ても遠隔操作を続けられる

・起動

winvnc.exe

・停止

winvnc.exe -kill

・サービスとして登録・実行 ※管理者として実行

powershell start-process winvnc.exe -ArgumentList “-install” -verb runas

・サービス登録解除・停止 ※管理者として実行

powershell start-process winvnc.exe -ArgumentList “-uninstall” -verb runas

・”-remove” オプションは無いみたい

powershell start-process winvnc.exe -ArgumentList “-remove” -verb runas

クイック アシスト / Windows Quick Assist

golang で UPnP をサポートするルーターを検出し、ルーターの外部ポートをローカル PC の転送ポートにマップする / Detects routers that support UPnP and maps the router’s external ports to forward ports on the local PC with golang