# websocket-rl-server **Repository Path**: smart-traffic-experiment/websocket-rl-server ## Basic Information - **Project Name**: websocket-rl-server - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-20 - **Last Updated**: 2026-04-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # websocket-rl-server ## If you intend to use it over lan On most of the machines, the ports isn't exposed over LAN. Inorder to bypass this, there are two options: ### Firewall One way is to unblock the port, process may differ in different platforms. On windows, windows firewall is used and on linux some firewall controller is used. Inorder to unblock for this websocket, tcp inbound(and outbound) connection must be allowed.
- [windows](https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-firewall/create-an-inbound-port-rule). Also create outbound rule. - [linux](https://www.ibm.com/docs/es/spectrum-scale/5.1.0?topic=firewall-examples-how-open-ports): Example(OpenSuse): `sudo firewall-cmd --open-port 5000/tcp` ### ssh Another way is to connect via ssh and link to the server directly in clients. For this purpose, the server must host a ssh server too.
For linking through openssh: `ssh -L {client-port}:{server-ip}:{server-port} user@{server-ip}`.
Example: `ssh -L 5000:192.168.0.108:5000 user@192.168.0.108`
This links the server's port 5000 to clients ports 5000 so `localhost:5000` will connect to the server's port.