Crates.io | nu_plugin_net |
lib.rs | nu_plugin_net |
version | |
source | src |
created_at | 2022-07-28 20:49:19.300397 |
updated_at | 2024-10-07 15:39:31.696914 |
description | A nushell plugin for enumerating network interfaces in a platform-agnostic way |
homepage | https://github.com/fennewald/nu_plugin_net |
repository | https://github.com/fennewald/nu_plugin_net |
max_upload_size | |
id | 634670 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A nushell plugin to list system network interfaces
A simple and straightforward plugin. All of the heavy lifting is done by pnet. This package just translates the datatypes into a nu-acceptable format.
Format may be subject to change.
[!note] Version 2.0 Is in the Works
Version 2 of this plugin is actively being prepared. Some important objectives:
ping
If you've got thoughts about the direction we should take, or are interested in helping out, please get in touch! Feel free to file an issue, or just send me an email directly.
~> net
╭───┬──────┬─────────────┬──────────┬───────────────────┬──────────────────────────────────────────────────┬────────────────────────────────╮
│ # │ name │ description │ if_index │ mac │ ips │ flags │
├───┼──────┼─────────────┼──────────┼───────────────────┼──────────────────────────────────────────────────┼────────────────────────────────┤
│ 0 │ lo │ │ 1 │ 00:00:00:00:00:00 │ ╭───┬───────────┬──────┬────────╮ │ ╭────────────────────┬───────╮ │
│ │ │ │ │ │ │ # │ addr │ type │ prefix │ │ │ is_up │ true │ │
│ │ │ │ │ │ ├───┼───────────┼──────┼────────┤ │ │ is_broadcast │ false │ │
│ │ │ │ │ │ │ 0 │ 127.0.0.1 │ v4 │ 8 │ │ │ is_loopback │ true │ │
│ │ │ │ │ │ │ 1 │ ::1 │ v6 │ 128 │ │ │ is_point_to_point │ false │ │
│ │ │ │ │ │ ╰───┴───────────┴──────┴────────╯ │ │ is_multicast │ false │ │
│ │ │ │ │ │ │ ╰────────────────────┴───────╯ │
│ 1 │ ens5 │ │ 2 │ 0e:ec:4c:2a:2e:43 │ ╭───┬──────────────────────────┬──────┬────────╮ │ ╭────────────────────┬───────╮ │
│ │ │ │ │ │ │ # │ addr │ type │ prefix │ │ │ is_up │ true │ │
│ │ │ │ │ │ ├───┼──────────────────────────┼──────┼────────┤ │ │ is_broadcast │ true │ │
│ │ │ │ │ │ │ 0 │ 172.23.65.24 │ v4 │ 24 │ │ │ is_loopback │ false │ │
│ │ │ │ │ │ │ 1 │ fe80::cec:4cff:fe2a:2e43 │ v6 │ 64 │ │ │ is_point_to_point │ false │ │
│ │ │ │ │ │ ╰───┴──────────────────────────┴──────┴────────╯ │ │ is_multicast │ true │ │
│ │ │ │ │ │ │ ╰────────────────────┴───────╯ │
╰───┴──────┴─────────────┴──────────┴───────────────────┴──────────────────────────────────────────────────┴────────────────────────────────╯
~> net | flatten flags
╭───┬──────┬─────────────┬──────────┬───────────────────┬──────────────────────────────────────────────────┬───────┬──────────────┬─────────────┬───────────────────┬──────────────╮
│ # │ name │ description │ if_index │ mac │ ips │ is_up │ is_broadcast │ is_loopback │ is_point_to_point │ is_multicast │
├───┼──────┼─────────────┼──────────┼───────────────────┼──────────────────────────────────────────────────┼───────┼──────────────┼─────────────┼───────────────────┼──────────────┤
│ 0 │ lo │ │ 1 │ 00:00:00:00:00:00 │ ╭───┬───────────┬──────┬────────╮ │ true │ false │ true │ false │ false │
│ │ │ │ │ │ │ # │ addr │ type │ prefix │ │ │ │ │ │ │
│ │ │ │ │ │ ├───┼───────────┼──────┼────────┤ │ │ │ │ │ │
│ │ │ │ │ │ │ 0 │ 127.0.0.1 │ v4 │ 8 │ │ │ │ │ │ │
│ │ │ │ │ │ │ 1 │ ::1 │ v6 │ 128 │ │ │ │ │ │ │
│ │ │ │ │ │ ╰───┴───────────┴──────┴────────╯ │ │ │ │ │ │
│ 1 │ ens5 │ │ 2 │ 0e:ec:4c:2a:2e:43 │ ╭───┬──────────────────────────┬──────┬────────╮ │ true │ true │ false │ false │ true │
│ │ │ │ │ │ │ # │ addr │ type │ prefix │ │ │ │ │ │ │
│ │ │ │ │ │ ├───┼──────────────────────────┼──────┼────────┤ │ │ │ │ │ │
│ │ │ │ │ │ │ 0 │ 172.23.65.24 │ v4 │ 24 │ │ │ │ │ │ │
│ │ │ │ │ │ │ 1 │ fe80::cec:4cff:fe2a:2e43 │ v6 │ 64 │ │ │ │ │ │ │
│ │ │ │ │ │ ╰───┴──────────────────────────┴──────┴────────╯ │ │ │ │ │ │
╰───┴──────┴─────────────┴──────────┴───────────────────┴──────────────────────────────────────────────────┴───────┴──────────────┴─────────────┴───────────────────┴──────────────╯
This plugin can either be installed from crates.io, or built from source.
To install using cargo, run:
cargo install nu_plugin_net
To build from source, use:
git clone https://github.com/fennewald/nu_plugin_net.git
cd nu_plugin_net
cargo install --path .
Both of these processes will place a binary in ~/.cargo/bin/nu_plugin_net
To register the plugin for use, just run:
plugin add ~/.cargo/bin/nu_plugin_net
Maintainer note: Sorry for the inconsitencies. From now on, nushell version updates will include minor version bumps
if_index
instead of index
, fixing the way table indexes are displayed