Skip to content

Commit 3e8d40f

Browse files
author
marci
committed
Aktualisiere die VSCode-Einstellungen für Markdown und verbessere die Beschreibung des ipconfig-Befehls in der Dokumentation
1 parent 39d2819 commit 3e8d40f

3 files changed

Lines changed: 58 additions & 8 deletions

File tree

.vscode/settings.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
"editor.wordWrap": "wordWrapColumn",
77
"editor.wordWrapColumn": 64,
88
"editor.lineNumbers": "off",
9-
"editor.quickSuggestions": false,
9+
"editor.quickSuggestions": {
10+
"comments": "off",
11+
"strings": "off",
12+
"other": "off"
13+
},
1014
"editor.minimap.enabled": false
11-
}
15+
},
16+
"frontMatter.panel.openOnSupportedFile": true
1217
}
Lines changed: 50 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,54 @@
11
---
22
title: ipconfig-command
3-
description: ""
3+
description: Master the ipconfig command to troubleshoot network issues and optimize your internet connection effortlessly.
44
date: 2025-07-23T07:50:18.409Z
5-
preview: ""
6-
draft: true
7-
tags: [windows, cmd, powershell, tutorial]
8-
categories: [Windows, Tutorial]
5+
preview: ../../../assets/images/posts/windows/ipconfig_all.png
6+
draft: false
7+
tags:
8+
- windows
9+
- cmd
10+
- powershell
11+
- tutorial
12+
categories:
13+
- Tutorial
14+
- Windows
15+
- Network
16+
hero: /images/posts/windows/ipconfig_all.png
17+
keywords: ipconfig
18+
slug: ipconfig-command
19+
menu:
20+
sidebar:
21+
parent: windows
22+
identifier: ipconfig
23+
name: The ipconfig command overview
924
---
25+
You can find an **overview of all CMD commands** in **[**this article**](https://secure-bits.org/cmd-befehle-unter-windows-im-ueberblick/)**
26+
## ipconfig commands at a glance
27+
If you often make changes to your IP address or DNS resolution, for example because you use multiple DNS servers, you will be familiar with the problem that configuring the network adapter using the standard board tools (GUI) is not exactly convenient. The command line (CMD or Powershell) is ideal for this purpose. This overview shows which commands, including the **ipconfig** command, are available for the individual actions to change the settings of the network adapters.
28+
In this overview, the **CMD** command prompt is used. This command prompt is called up by typing ‘cmd’ in the Windows search field. The fastest way to access the search field is by pressing the **Windows key + R**.
29+
### ipconfig /all
30+
To get an overview of the physical addresses, the IP addresses used, the DHCP server, and the DNS server used for the individual network adapters, use the command **ipconfig /all**.
31+
![ipconfig_all](/images/posts/windows/ipconfig_all.png)
32+
### ipconfig /flushdns
33+
This command clears the DNS resolution cache. This function is useful if, for example, there are problems with DNS resolution because the DNS server settings have been changed. This command initiates a new query of the DNS server settings.
34+
![ipconfig_flushdns](/images/posts/windows/ipconfig_flushdns.png)
35+
36+
### ipconfig /renew
37+
The command **ipconfig /renew** is used for IPv4 address ranges and the command **ipconfig /renew6** for IPv6 address ranges to request a new IP address for the network adapters connected via the TCP/IP protocol.
38+
![ipconfig_renew](/images/posts/windows/ipconfig_renew.png)
39+
<figure>
40+
<figcaption>
41+
ipconfig /help
42+
### Ipconfig /release
43+
To release existing IP addresses of the network adapters, this command is used for IPv4 address ranges or **ipconfig /release** for IPv6. To then obtain a new IP address via DHCP, use the previous command <**ipconfig /renew**\>.
44+
![ipconfig_release](/images/posts/windows/ipconfig_release.png)
45+
46+
### ipconfig /displaydns
47+
This command is used to display the contents of the DNS resolution cache.
48+
![ipconfig_displaydns (Excerpt from the output window)](/images/posts/windows/ipconfig_displaydns.png)
49+
50+
### Addressing network adapters
51+
Most ipconfig commands also allow you to address individual network adapters directly. To do this, append the name of the network adapter to the basic command after the actual ipconfig command (example: `ipconfig /renew Name\_Network adapter`). If there are multiple network adapters, they can also be limited by adding `\*Net\` (executes the command on all network adapters that have “Net” in their name) or `Ne\*` (executes the command on all network adapters that begin with “Ne” in their name).
52+
An overview of all variants available with the ipconfig command is listed with the commands **ipconfig /help** or **ipconfig /?**.
53+
![ipconfig_help](/images/posts/windows/ipconfig_help.png)
54+

frontmatter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
}
123123
],
124124
"frontMatter.preview.host": "http://localhost:1313",
125-
"frontMatter.git.enabled": true,
125+
"frontMatter.git.enabled": false,
126126
"frontMatter.content.pageFolders": [
127127
{
128128
"title": "archetypes",

0 commit comments

Comments
 (0)