mirror of https://github.com/CrimsonTome/tldr.git
ipconfig: add Dutch translation (#13413)
parent
1cc430f682
commit
8b81d168c0
|
@ -0,0 +1,12 @@
|
||||||
|
# ipconfig
|
||||||
|
|
||||||
|
> Bekijk en beheer de IP-configuratiestatus.
|
||||||
|
> Meer informatie: <https://keith.github.io/xcode-man-pages/ipconfig.8.html>.
|
||||||
|
|
||||||
|
- Lijst alle netwerkinterfaces op:
|
||||||
|
|
||||||
|
`ipconfig getiflist`
|
||||||
|
|
||||||
|
- Toon het IP-adres van een interface:
|
||||||
|
|
||||||
|
`ipconfig getifaddr {{interfacenaam}}`
|
|
@ -0,0 +1,28 @@
|
||||||
|
# ipconfig
|
||||||
|
|
||||||
|
> Toon en beheer de netwerkconfiguratie van Windows.
|
||||||
|
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/ipconfig>.
|
||||||
|
|
||||||
|
- Lijst alle netwerkadapters op:
|
||||||
|
|
||||||
|
`ipconfig`
|
||||||
|
|
||||||
|
- Toon een gedetailleerde lijst van netwerkadapters:
|
||||||
|
|
||||||
|
`ipconfig /all`
|
||||||
|
|
||||||
|
- Vernieuw de IP-adressen voor een netwerkadapter:
|
||||||
|
|
||||||
|
`ipconfig /renew {{adapter}}`
|
||||||
|
|
||||||
|
- Laat de IP-adressen voor een netwerkadapter vrij:
|
||||||
|
|
||||||
|
`ipconfig /release {{adapter}}`
|
||||||
|
|
||||||
|
- Toon de lokale DNS-cache:
|
||||||
|
|
||||||
|
`ipconfig /displaydns`
|
||||||
|
|
||||||
|
- Verwijder alle gegevens uit de lokale DNS-cache:
|
||||||
|
|
||||||
|
`ipconfig /flushdns`
|
Loading…
Reference in New Issue