Skip to content

Instantly share code, notes, and snippets.

@Apsu
Created November 23, 2024 00:43
Show Gist options
  • Save Apsu/13537b7f562496401ccde5ee318255fb to your computer and use it in GitHub Desktop.
Save Apsu/13537b7f562496401ccde5ee318255fb to your computer and use it in GitHub Desktop.
iproute tips

Abbreviations

iproute allows for lots of brevity when constructing commands, recognizing any unique prefix of a command or subcommand. For example:

ip r(oute) a(dd) x(.x.x.x[/yy]) dev eno1

Which will allow you to add a route like 10.0.0.0/32 without typing it all out; 10/8 type abbreviations work as well.

> ip r a 192 dev eno1
> ip r
192.0.0.0 dev eno1 scope link

Flags

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment