https://github.com/cha87de/udp-multix
A Docker Image UDP Multiplexer with socat
https://github.com/cha87de/udp-multix
Last synced: about 2 months ago
JSON representation
A Docker Image UDP Multiplexer with socat
- Host: GitHub
- URL: https://github.com/cha87de/udp-multix
- Owner: cha87de
- License: gpl-3.0
- Created: 2019-03-04T18:02:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-04T18:07:55.000Z (over 7 years ago)
- Last Synced: 2025-10-07T06:43:45.734Z (9 months ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# udp-multix
A Docker Image UDP Multiplexer with socat
Docker Image is available via Docker Hub: https://cloud.docker.com/repository/docker/cha87de/udp-multix
Example Usage:
```
docker run --rm -ti -e INPORT=12345 -e OUT1=127.0.0.1:12346 -e OUT2=127.0.0.1:12347 --net=host cha87de/udp-multix
```
All UDP traffic coming to port `12345` will be simultaneously redirected to `127.0.0.1:12346` and `127.0.0.1:12347`.