| Crates.io | dndx-fork-tokio-tun |
| lib.rs | dndx-fork-tokio-tun |
| version | 0.5.1 |
| created_at | 2021-09-23 04:48:49.020799+00 |
| updated_at | 2022-04-16 03:05:57.784643+00 |
| description | Asynchronous allocation of TUN/TAP devices using tokio |
| homepage | https://github.com/yaa110/tokio-tun |
| repository | https://github.com/yaa110/tokio-tun |
| max_upload_size | |
| id | 455223 |
| size | 60,554 |
Asynchronous allocation of TUN/TAP devices in Rust using tokio. Use async-tun for async-std version.
TunBuilder and read from it in a loop:#[tokio::main]
async fn main() -> Result<()> {
let tun = TunBuilder::new()
.name("") // if name is empty, then it is set by kernel.
.tap(false) // false (default): TUN, true: TAP.
.packet_info(false) // false: IFF_NO_PI, default is true.
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
.try_build()?; // or `.try_build_mq(queues)` for multi-queue support.
println!("tun created, name: {}, fd: {}", tun.name(), tun.as_raw_fd());
let (mut reader, mut _writer) = tokio::io::split(tun);
let mut buf = [0u8; 1024];
loop {
let n = reader.read(&mut buf).await?;
println!("reading {} bytes: {:?}", n, &buf[..n]);
}
}
sudo:➜ sudo -E /path/to/cargo run
TunBuilder):➜ sudo ip a add 10.0.0.1/24 dev <tun-name>
➜ ping 10.0.0.2
➜ ip tuntap
➜ sudo tshark -i <tun-name>