Forrest logo
back to context overview

ip-link

List of commands for ip-link:

  • ip-link:tldr:062d1 ip-link: Show information about all network interfaces.
    $ ip link
    try on your machine
    explain this command
  • ip-link:tldr:13015 ip-link: Change the MTU size for a network interface to use jumbo frames.
    $ ip link set ${ethN} mtu ${9000}
    try on your machine
    explain this command
  • ip-link:tldr:54f49 ip-link: Show information about a specific network interface.
    $ ip link show ${ethN}
    try on your machine
    explain this command
  • ip-link:tldr:741b1 ip-link: Give a meaningful name to a network interface.
    $ ip link set ${ethN} alias "${LAN Interface}"
    try on your machine
    explain this command
  • ip-link:tldr:c1bd5 ip-link: Bring a network interface up or down.
    $ ip link set ${ethN} ${select}
    try on your machine
    explain this command
  • ip-link:tldr:cf808 ip-link: Change the MAC address of a network interface.
    $ ip link set ${ethN} address ${ff:ff:ff:ff:ff:ff}
    try on your machine
    explain this command
back to context overview