1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
// SPDX-License-Identifier: MIT
#![cfg(feature = "tokio_socket")]
use futures::stream::TryStreamExt;
use rtnetlink::{new_connection, Error, Handle};
use std::env;
#[tokio::main]
async fn main() -> Result<(), String> {
let args: Vec<String> = env::args().collect();
if args.len() != 2 {
usage();
return Ok(());
}
let link_name = &args[1];
let (connection, handle, _) = new_connection().unwrap();
tokio::spawn(connection);
create_vxlan(handle, link_name.to_string())
.await
.map_err(|e| format!("{e}"))
}
async fn create_vxlan(handle: Handle, name: String) -> Result<(), Error> {
let mut links = handle.link().get().match_name(name.clone()).execute();
if let Some(link) = links.try_next().await? {
handle
.link()
.add()
.vxlan("vxlan0".into(), 10u32)
.link(link.header.index)
.port(4789)
.up()
.execute()
.await?
} else {
println!("no link link {name} found");
}
Ok(())
}
fn usage() {
eprintln!(
"usage:
cargo run --example create_vxlan -- <link name>
Note that you need to run this program as root. Instead of running cargo as root,
build the example normally:
cd netlink-ip ; cargo build --example create_vxlan
Then find the binary in the target directory:
cd ../target/debug/example ; sudo ./create_vxlan <link_name>"
);
}
|