https://github.com/neosmart/udpproxy
Cross-platform UDP proxy
https://github.com/neosmart/udpproxy
proxy rust udp
Last synced: 9 months ago
JSON representation
Cross-platform UDP proxy
- Host: GitHub
- URL: https://github.com/neosmart/udpproxy
- Owner: neosmart
- License: mit
- Created: 2017-08-11T03:39:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-18T17:30:27.000Z (over 1 year ago)
- Last Synced: 2025-05-19T00:03:15.955Z (about 1 year ago)
- Topics: proxy, rust, udp
- Language: Rust
- Size: 15.6 KB
- Stars: 46
- Watchers: 2
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# udpproxy
_a simple, cross-platform, multi-client UDP proxy_
`udpproxy` is a cross-platform, multi-client UDP proxy written in rust, that is designed for those "one-time" tasks where you usually end up spending more time installing a proxy server and setting up the myriad configuration files and options than you do actually using it.
## Usage
`udpproxy` is a command-line application. One instance of `udpproxy` should be started for each remote endpoint you wish to proxy data to/from. All configuration is done via command-line arguments, in keeping with the spirit of this project.
```
udpproxy [-b BIND_ADDR] -l LOCAL_PORT -h REMOTE_ADDR -r REMOTE_PORT
Options:
-l, --local-port LOCAL_PORT
The local port to which udpproxy should bind to
-r, --remote-port REMOTE_PORT
The remote port to which UDP packets should be
forwarded
-h, --host REMOTE_ADDR
The remote address to which packets will be forwarded
-b, --bind BIND_ADDR
The address on which to listen for incoming requests
-d, --debug Enable debug mode
```
Where possible, sane defaults for arguments are provided automatically.
## Installation
`udpproxy` is available via `crate`, the rust package manager. Installation is as follows:
cargo install udpproxy
Pre-complied binaries for select platforms may be available from the `udpproxy` homepage at https://neosmart.net/udpproxy/
## License
`udpproxy` is open source and licensed under the terms of the MIT public license.