alpine, apt*, dnf, ip*: add German translation (#4707)

This commit is contained in:
MarkusS
2020-10-19 18:41:28 +02:00
committed by GitHub
parent 844675fdb0
commit 6e04e6dfc5
7 changed files with 201 additions and 0 deletions

35
pages.de/linux/ip.md Normal file
View File

@@ -0,0 +1,35 @@
# ip
> Zeigt / manipuliert routing, Geräte, Policy routing und Tunnel.
- Zeigt Interfaces mit detailitern Infos:
`ip address`
- Zeigt Interfaces mit kurzer Netzwerk Info:
`ip -brief address`
- Zeigt Interfaces mit kurzer link layer Info:
`ip -brief link`
- Zeigt die Routing Tabelle:
`ip route`
- Zeigt Nachbarn (ARP Tabelle):
`ip neighbour`
- Schaltet Interface ein/aus:
`ip link set {{Interface}} up/down`
- fügt/entfernt eine IP zu einem Interface (hinzu):
`ip addr add/del {{ip}}/{{mask}} dev {{interface}}`
- Fügt eine Standard Route hinzu:
`ip route add default via {{ip}} dev {{interface}}`