2014-02-25 10:25:47 +08:00
|
|
|
# ip
|
|
|
|
|
2023-06-13 22:44:43 +05:30
|
|
|
> Show/manipulate routing, devices, policy routing and tunnels.
|
2021-09-13 10:21:21 +02:00
|
|
|
> Some subcommands such as `ip address` have their own usage documentation.
|
2021-03-27 12:51:16 +01:00
|
|
|
> More information: <https://www.man7.org/linux/man-pages/man8/ip.8.html>.
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- List interfaces with detailed info:
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2020-10-06 13:12:54 +02:00
|
|
|
`ip address`
|
|
|
|
|
|
|
|
- List interfaces with brief network layer info:
|
|
|
|
|
|
|
|
`ip -brief address`
|
|
|
|
|
|
|
|
- List interfaces with brief link layer info:
|
|
|
|
|
|
|
|
`ip -brief link`
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Display the routing table:
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2020-10-06 13:12:54 +02:00
|
|
|
`ip route`
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2018-07-16 23:00:02 +08:00
|
|
|
- Show neighbors (ARP table):
|
|
|
|
|
2020-10-06 13:12:54 +02:00
|
|
|
`ip neighbour`
|
2018-07-16 23:00:02 +08:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Make an interface up/down:
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2023-12-27 07:22:49 +01:00
|
|
|
`ip link set {{interface}} {{up|down}}`
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Add/Delete an IP address to an interface:
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2014-02-25 10:28:45 +08:00
|
|
|
`ip addr add/del {{ip}}/{{mask}} dev {{interface}}`
|
2014-02-25 10:25:47 +08:00
|
|
|
|
2017-03-29 11:20:39 -04:00
|
|
|
- Add a default route:
|
2014-02-25 10:25:47 +08:00
|
|
|
|
|
|
|
`ip route add default via {{ip}} dev {{interface}}`
|