https://github.com/faern/ripstest
Testing and example code for librips
https://github.com/faern/ripstest
Last synced: 12 months ago
JSON representation
Testing and example code for librips
- Host: GitHub
- URL: https://github.com/faern/ripstest
- Owner: faern
- Created: 2016-03-03T07:18:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T21:13:34.000Z (over 9 years ago)
- Last Synced: 2024-10-17T15:44:44.158Z (over 1 year ago)
- Language: Rust
- Size: 46.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# librips testsuite
This is a small tool for using the functionality of the Rust TCP/IP stack
implementation [librips](https://github.com/faern/librips).
# Usage
Clone [librips](https://github.com/faern/librips) and this repo next to each
other.
Run `cargo run -- help` for usage instructions.
```bash
git clone https://github.com/faern/librips
git clone https://github.com/faern/ripstest
cd ripstest
cargo run -- help
```
Will print something like:
```bash
RIPS testsuite 1.0
Linus Färnstrand
Test out the RIPS TCP/IP stack in the real world
USAGE:
ripstest [FLAGS] [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
-v Sets the level of verbosity
-V, --version Prints version information
SUBCOMMANDS:
arp Send an Arp query to the network and wait for the response
eth Sends raw ethernet frames to a given MAC address.
help Prints this message or the help of the given subcommand(s)
ipv4 Send an IPv4 packet with a given payload to the network.
```