Go to file
Fabian Stamm c90a8fff4a Bumping version to 0.1.11 2023-06-07 08:08:25 +02:00
.github/workflows Adding Earthfile for CI 2023-06-06 22:27:49 +02:00
src Make it work in nomad 2023-04-14 04:13:41 +02:00
.editorconfig Implementing udp support partially...in theory. Still untested :) 2022-09-21 22:22:10 +02:00
.gitignore Adjust version and README 2023-02-05 11:34:57 +01:00
Cargo.lock Bumping version 2023-06-06 22:28:23 +02:00
Cargo.toml Bumping version to 0.1.11 2023-06-07 08:08:25 +02:00
Dockerfile Make it work in nomad 2023-04-14 04:13:41 +02:00
Earthfile Adjusting Earthfile 2023-06-07 08:07:40 +02:00
README.md Adjust version and README 2023-02-05 11:34:57 +01:00

README.md

Rustocat

Rustocat is a simple socat alternative with way less features, but it has a config file.

Config File

Configs can be either yaml or json and can be located in /etc/rustocat.{yaml|json} or in the current working directory as config.{yaml|json}.

mappings:
  - udp: false
    source: 0.0.0.0:2222
    targets: [127.0.0.1:22]

There is support for UDP and TCP sockets. Each socket can have multiple targets.

When multiple targets are set, it will randomly pick one of them.

Live Changes

It is designed to live reconfigure itself. To trigger a change, send the signal SIGHUP to the process. This will re-read the config file and adjust the sockets and targets accordingly.

All existing connections will stay as they are, but removed sources are closed from further connections.