TCP/IP Einstellungen via Batch ändern
Hi,
ich würde gerne mittels einer batchdatei die Eigenschaften der LAN-Verbindung ändern nur weiss ich leider noch nicht so ganz wie. Habe es schonmal mit "netsh" ausprobiert aber das funktioniert bei der IP, der Subnetmask und dem Gateway nicht.
Danke schonmal im Vorraus.
Christian
ich würde gerne mittels einer batchdatei die Eigenschaften der LAN-Verbindung ändern nur weiss ich leider noch nicht so ganz wie. Habe es schonmal mit "netsh" ausprobiert aber das funktioniert bei der IP, der Subnetmask und dem Gateway nicht.
Danke schonmal im Vorraus.
Christian
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 24287
Url: https://administrator.de/contentid/24287
Ausgedruckt am: 05.11.2024 um 19:11 Uhr
6 Kommentare
Neuester Kommentar
Warum sollte das nicht gehen? Die M$-Hilfe sagt:
"To view the command syntax, click a command:
set address
Configures an IP address and a default gateway on a specified interface.
Syntax
set address [name=]InterfaceName [source=]{dhcp | static [addr=]IPAddress [mask=]SubnetMask [gateway=]{none | DefaultGateway [[gwmetric=]GatewayMetric]}}
Parameters
[name =] InterfaceName
Required. Specifies the name of the interface for which you want to configure address and gateway information. The InterfaceName parameter must match the name of the interface as specified in Network Connections. If InterfaceName contains spaces, use quotation marks around the text (for example, "Interface Name").
[source=]{dhcp | static [addr=]IPAddress [mask=]SubnetMask [gateway=]{none | DefaultGateway [[gwmetric=]GatewayMetric]}}
Required. Specifies whether the IP address to configure originates from a Dynamic Host Configuration Protocol (DHCP) server or is static. If the address is static, IPAddress specifies the address to configure, and SubnetMask specifies the subnet mask for the IP address being configured. If the address is static, you must also specify whether you want to leave the current default gateway (if any) in place or configure one for the address. If you configure a default gateway, DefaultGateway specifies the IP address of the default gateway to be configured, and GatewayMetric specifies the metric for the default gateway to be configured.
"
Gruß
Atti
"To view the command syntax, click a command:
set address
Configures an IP address and a default gateway on a specified interface.
Syntax
set address [name=]InterfaceName [source=]{dhcp | static [addr=]IPAddress [mask=]SubnetMask [gateway=]{none | DefaultGateway [[gwmetric=]GatewayMetric]}}
Parameters
[name =] InterfaceName
Required. Specifies the name of the interface for which you want to configure address and gateway information. The InterfaceName parameter must match the name of the interface as specified in Network Connections. If InterfaceName contains spaces, use quotation marks around the text (for example, "Interface Name").
[source=]{dhcp | static [addr=]IPAddress [mask=]SubnetMask [gateway=]{none | DefaultGateway [[gwmetric=]GatewayMetric]}}
Required. Specifies whether the IP address to configure originates from a Dynamic Host Configuration Protocol (DHCP) server or is static. If the address is static, IPAddress specifies the address to configure, and SubnetMask specifies the subnet mask for the IP address being configured. If the address is static, you must also specify whether you want to leave the current default gateway (if any) in place or configure one for the address. If you configure a default gateway, DefaultGateway specifies the IP address of the default gateway to be configured, and GatewayMetric specifies the metric for the default gateway to be configured.
"
Gruß
Atti
Hi Christian,
was funktioniert denn nicht? Gibt es Fehlermeldungen? Wie sieht die von Dir ausprobierte netsh-Befehlszeile aus?
Viele Grüße
Peter
was funktioniert denn nicht? Gibt es Fehlermeldungen? Wie sieht die von Dir ausprobierte netsh-Befehlszeile aus?
Viele Grüße
Peter
Hi Christian
Ich glaube so geht das nicht.
Bei mir sieht die Batchdatei so aus
netsh interface ip set address name="LAN-Verbindung" source=static addr=192.168.10.243 mask=255.255.255.
Wenn du einen Gatway eintragen willst, musst du noch nach der Gatewayadresse den gwmetric=Wert anhängen.
Tschau Andre
Ich hoffe ich habe helfen können
Ich glaube so geht das nicht.
Bei mir sieht die Batchdatei so aus
netsh interface ip set address name="LAN-Verbindung" source=static addr=192.168.10.243 mask=255.255.255.
Wenn du einen Gatway eintragen willst, musst du noch nach der Gatewayadresse den gwmetric=Wert anhängen.
Tschau Andre
Ich hoffe ich habe helfen können
Das folgende Beispiel stellt für "LAN-Verbindung" die IP-Adresse 192.168.5.100, die Subnetzmaske 255.255.255.0, das Standardgateway 192.168.5.1 und Metrik 1 ein:
netsh interface ip set address "LAN-Verbindung" ^
static 192.168.5.100 255.255.255.0 192.168.5.1 1
Umstellung auf DHCP geht so:
netsh interface ip set address "LAN-Verbindung" dhcp
netsh interface ip set address "LAN-Verbindung" ^
static 192.168.5.100 255.255.255.0 192.168.5.1 1
Umstellung auf DHCP geht so:
netsh interface ip set address "LAN-Verbindung" dhcp