ethernet-info

Crates.ioethernet-info
lib.rsethernet-info
version0.0.4
sourcesrc
created_at2023-08-04 16:12:47.820028
updated_at2024-02-29 12:16:26.598907
descriptionA library uses SIOCETHTOOL ioctl command to get ethernet information
homepagehttps://github.com/ssfdust/ethernet-info-rs
repositoryhttps://github.com/ssfdust/ethernet-info-rs
max_upload_size
id935382
size73,781
飘尘 (ssfdust)

documentation

https://docs.rs/ethernet-info

README

Ethernet Info

crates.io docs.rs ci coverage

The crate provides a way to get the link information of the interface, including the port type, supported modes. The crate is based on the ioctl command, so it can only be used on Linux.

Examples

List all the interfaces' ethtool related information.

use ethernet_info::get_ethernet_info;
let interfaces_eth_info = get_ethernet_info(None);
for interface_info in interfaces_eth_info {
    println!("interface: {}", interface_info.name());
    println!("Port: {}", interface_info.port());
    println!("Supported Ports: {:?}", interface_info.ports());
    println!("Supported: {:?}", interface_info.supported());
}

Get the ethtool related information of the specified interface.

use ethernet_info::get_ethernet_info;
let interfaces_eth_info = get_ethernet_info(Some("enp1s0"));
for interface_info in interfaces_eth_info {
    println!("interface: {}", interface_info.name());
    println!("Port: {}", interface_info.port());
    println!("Supported Ports: {:?}", interface_info.ports());
    println!("Supported: {:?}", interface_info.supported());
}

Get the ethtool related of the specified interface by EthernetInfo.

use ethernet_info::EthernetInfo;
if let Ok(interface_info) = EthernetInfo::try_from("enp1s0") {
    println!("interface: {}", interface_info.name());
    println!("Port: {}", interface_info.port());
    println!("Supported Ports: {:?}", interface_info.ports());
    println!("Supported: {:?}", interface_info.supported());
}

Test

This crate depends on hardware, some tests may not be passed on every machine. Please change the test option on your own.

Commit count: 20

cargo fmt