acton
provides a linux
API for ethernet over udp networking using Rust.
More examples, including a packet logger, and a version of the ethernet over udp server & client
written, can be found in the examples/
directory.
This code implements an Ethernet over udp server and client. Whenever a ethernet frame @ server is received on an interface, it sends the packet to clients, and Vice versa. In service, simple ethernet mac learning is implemented with mac forwarding table aging. The BUM (Broadcast, Unknown, Multicast) frame sent by server will be flooded to all clients. But local switch between clients is not allowed (P2MP forwarding manner). Proprietary control packets are defined and used for a session lifecycle management (hello and keepalive control packets)
1,000 clients are tested (linux system resource limitation should be considered)
shell
wget https://github.com/simonrho/acton/raw/main/target/release/examples/acton; chmod +x ./acton
```shell root@r1:~/acton# ./acton acton 0.1.0 Ethernet over TCP tunnel tools
USAGE:
acton
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: client client connect mode for L2 tunnel establishment help Prints this message or the help of the given subcommand(s) server server listen mode for L2 tunnel requests ```
```shell root@r1:~/acton# ./acton server --help acton-server 0.1.0 server listen mode for L2 tunnel requests
USAGE: acton server [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS: -a, --address
tap ip network (a.b.c.d/n) [env: CLIENTTAPNETWORK=] [default: 0.0.0.0/0] -l, --listen```
```shell root@r2:~/acton# ./target/release/examples/acton client -h acton-client 0.1.0 client connect mode for L2 tunnel establishment
USAGE:
acton client [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS: -a, --address
tap ip network (a.b.c.d/n) [env: CLIENTTAPNETWORK=] [default: 0.0.0.0/0] -m, --macARGS:
Beware -d
, interoperable with socat command
root@r2:~/acton# ./target/release/examples/acton client 192.168.99.11 -a 100.0.0.2/24 -t client -m 00:02:03:04:05:06
[2022-01-30T10:38:10Z INFO acton::client] client starts
[2022-01-30T10:38:10Z INFO acton::client] connected: 192.168.99.11:8080
```
shell
root@r2:~/acton# ping 100.0.0.1
PING 100.0.0.1 (100.0.0.1) 56(84) bytes of data.
64 bytes from 100.0.0.1: icmp_seq=1 ttl=64 time=0.971 ms
64 bytes from 100.0.0.1: icmp_seq=2 ttl=64 time=0.990 ms
64 bytes from 100.0.0.1: icmp_seq=3 ttl=64 time=1.05 ms
64 bytes from 100.0.0.1: icmp_seq=4 ttl=64 time=1.22 ms
64 bytes from 100.0.0.1: icmp_seq=5 ttl=64 time=0.875 ms
64 bytes from 100.0.0.1: icmp_seq=6 ttl=64 time=1.05 ms
^C
--- 100.0.0.1 ping statistics ---
6 packets transmitted, 6 received, 0% packet loss, time 5064ms
rtt min/avg/max/mdev = 0.875/1.027/1.222/0.105 ms
root@r2:~/acton#