File: get_bond_port_settings.rs

package info (click to toggle)
rust-rtnetlink 0.14.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 828 kB
  • sloc: makefile: 2
file content (62 lines) | stat: -rw-r--r-- 1,640 bytes parent folder | download | duplicates (2)
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
58
59
60
61
62
// 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<(), ()> {
    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);

    let linkname = link_name.to_string();
    println!("dumping bond port settings for link \"{linkname}\"");

    if let Err(e) = dump_bond_port_settings(handle, linkname).await {
        eprintln!("{e}");
    }

    Ok(())
}

async fn dump_bond_port_settings(
    handle: Handle,
    linkname: String,
) -> Result<(), Error> {
    let mut links = handle.link().get().match_name(linkname.clone()).execute();
    if let Some(_link) = links.try_next().await? {
        let mut link_messgage =
            handle.link().get().match_name(linkname).execute();
        while let Some(msg) = link_messgage.try_next().await? {
            println!("{msg:?}");
        }
        Ok(())
    } else {
        eprintln!("link {linkname} not found");
        Ok(())
    }
}

fn usage() {
    eprintln!(
        "usage:
    cargo run --example get_bond_port_settings -- <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 get_bond_port_settings

Then find the binary in the target directory:

    cd ../target/debug/example ; sudo ./get_bond_port_settings <link_name>"
    );
}