Skip to main content

Linux network bonding

v0.1.2

Inspect Linux network bonding / LACP: list bond interfaces, read a bond's full status from /proc/net/bonding (mode, LACP actor/partner state, per-slave link status), and show link-layer details. Read-only.

3 allowed by default
Pack ID
bonding
Vendor
emisar
OS
linux
Actions
3

Install

emisar pack install fetches this pack, re-validates it, and verifies its content hash against the --hash below — the exact bytes this page was rendered against, so a tampered copy is rejected — before copying it into the runner's packs dir. The command reloads a running daemon itself; no manual restart.

on the runner host
sudo emisar pack install bonding --hash sha256:a47698f47c11140a959cfa7e5c08f46a932eb6548feebe99ff70de79f59adf8b

Actions 3 total

View on GitHub
  • bonding.link exec low

    ip -d link show <bond>

    Show link-layer + bond detail for one interface (state, MTU, mode, xmit hash, LACP rate).

    View source on GitHub
  • bonding.list exec low

    ip -d link show type bond

    List bond interfaces with their link-layer and bond-mode details.

    View source on GitHub
  • bonding.status exec low

    cat /proc/net/bonding/<bond>

    Show full bond status from /proc/net/bonding/<bond> — bonding mode, MII status, and for 802.3ad (LACP) the actor/partner state plus each slave's link state and aggregator id.

    View source on GitHub