2020-10-19 17:41:28 +01:00
|
|
|
# ip
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
> Zeige und manipuliere routing, Geräte, Policy routing und Tunnel.
|
2021-10-01 19:28:01 +01:00
|
|
|
> Weitere Informationen: <https://www.man7.org/linux/man-pages/man8/ip.8.html>.
|
2020-10-19 17:41:28 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige Interfaces mit detaillierten Informationen:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip address`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige Interfaces mit kurzen Netzwerkinformationen:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip -brief address`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige Interfaces mit kurzen link layer Informationen:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip -brief link`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige die Routing Tabelle:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip route`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige Nachbarn (ARP Tabelle):
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip neighbour`
|
|
|
|
|
2021-10-22 16:03:00 +01:00
|
|
|
- Schalte ein bestimmtes Interface ein oder aus:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`ip link set {{interface}} {{up|down}}`
|
2020-10-19 17:41:28 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Entferne oder füge eine IP zu einem Interface hinzu:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip addr add/del {{ip}}/{{mask}} dev {{interface}}`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge eine Standard Route hinzu:
|
2020-10-19 17:41:28 +01:00
|
|
|
|
|
|
|
`ip route add default via {{ip}} dev {{interface}}`
|