Ich suche nach einem umgekehrten Befehl, der den Namen des Netzwerkadapters für eine bestimmte IP-Adresse anzeigt.
Basierend auf allem, was ich versucht habe, sollte dies funktionieren. Sie scheinen zu sagen, dass Sie diese Informationen NUR von der IP-Adresse erhalten müssen, die Sie bereits in Ihrem Beispiel angegeben haben.
INTERAKTIVES PROMPT FÜR IP-ADRESSE, UM DEN NETZWERKVERBINDUNGSNAMEN ZU ERHALTEN
(Verwenden Sie WMIC
und einige Batch- FOR
Schleifen token
und delim
Parsing, um den Netzwerkverbindungsnamen für eine angegebene IP-Adresse abzurufen.)
(Der Ergebniswert wird in einem Befehlsfenster und einem Meldungsfeldfenster wiedergegeben. Es handelt sich ausschließlich um ein Batch-Skript, es werden jedoch dynamisch einige VBS-Skriptfunktionen erstellt, um den Prozess für alle Benutzer zu vereinfachen.)
@ECHO ON
:SetTempFiles
SET tmpIPaddr=%tmp%\~tmpipaddress.vbs
SET tmpNetConName1=%tmp%\~tmpNetConName1.txt
SET tmpNetConName2=%tmp%\~tmpNetConName2.txt
SET tmpBatFile=%tmp%\~tmpBatch.cmd
SET tmpVBNetCon=%tmp%\~tmpVBNetCon.vbs
IF EXIST "%tmpIPaddr%" DEL /F /Q "%tmpIPaddr%"
IF EXIST "%tmpNetConName1%" DEL /Q /F "%tmpNetConName1%"
IF EXIST "%tmpNetConName2%" DEL /Q /F "%tmpNetConName2%"
IF EXIST "%tmpBatFile%" DEL /Q /F "%tmpBatFile%"
IF EXIST "%tmpVBNetCon%" DEL /Q /F "%tmpVBNetCon%"
:InputBox
SET msgboxTitle=IP ADDRESS
SET msgboxLine1=Enter the IP address to get its Windows connection name
>"%tmpIPaddr%" ECHO wsh.echo inputbox("%msgboxLine1%","%msgboxTitle%")
FOR /F "tokens=*" %%N IN ('cscript //nologo "%tmpIPaddr%"') DO CALL :setvariables %%N
GOTO EOF
:setvariables
SET IPAddress=%~1
FOR /F "USEBACKQ TOKENS=3 DELIMS=," %%A IN (`"WMIC NICCONFIG GET IPADDRESS,MACADDRESS /FORMAT:CSV | FIND /I "%IPAddress%""`) DO (SET MACAddress=%%~A)
FOR /F "USEBACKQ TOKENS=3 DELIMS=," %%B IN (`"WMIC NIC GET MACADDRESS,NETCONNECTIONID /FORMAT:CSV | FIND /I "%MACAddress%""`) DO ECHO(%%~B>>"%tmpNetConName1%"
::: Parse Empty Lines
FINDSTR "." "%tmpNetConName1%">"%tmpNetConName2%"
::: Build Dynamic Batch with ECHO'd Network Connection Value
FOR /F "tokens=*" %%C IN (%tmpNetConName2%) DO ECHO ECHO %%~C>>"%tmpBatFile%"
IF NOT EXIST "%tmpBatFile%" GOTO :NullExit
START "" "%tmpBatFile%"
::: Build Dynamic VBS with Message Box Network Connection Value
FOR /F "tokens=*" %%C IN (%tmpNetConName2%) DO (SET vbNetconName=%%~C)
ECHO msgbox "%vbNetconName%",0,"%vbNetconName%">"%tmpVBNetCon%"
START /B "" "%tmpVBNetCon%"
EXIT /B
:NullExit
ECHO msgbox "Cannot find MAC Address, check to confirm IP Address was correct.",0,"Invalid IP">"%tmpVBNetCon%"
START /B "" "%tmpVBNetCon%"
EXIT /B
ALLE EINLINER
NATIVE WINDOWS NUR MIT NETSH ALLEN SCHNITTSTELLEN (ALLE IPv4-ADRESSEN)
NETSH INT IP SHOW CONFIG | FINDSTR /R "Configuration for interface.* Address.*[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*"
NATIVE WINDOWS NUR MIT IPCONFIG ALL INTERFACES (ALLE IPv4-ADRESSEN)
IPCONFIG | FINDSTR /R "Ethernet* Address.*[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*"
VERWENDUNG VON PCRE2GREP (per @SalvoF)
EINZEL-IP-ADRESSE ANGEGEBEN
netsh interface ipv4 show address | pcre2grep -B2 "192\.168\.2\.4" | FIND /V "DHCP"
FINDEN SIE ALLE IP-ADRESSEN
netsh interface ip show config | pcre2grep -B2 ^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$ | FIND /V "DHCP" | FIND /V "Gate" | FIND /V "Metric" | FIND /V "Subnet"
ALLE IP-ADRESSEN FINDEN (Regex bereinigt (per @SalvoF))
netsh interface ip show config | pcre2grep "^[A-Z]|IP.*([0-9]{1,3}(\.|)){4}"
Bitte beachten Sie, dass das, was pcre2grep
ich versucht habe, per @SalvoF ist, [+1]
wie er vorgeschlagen hat, aber die Verwendung der .... FIND /V
, um die obige Zeile zu entfernen, DHCP
scheint die gewünschte Ausgabe zu erhalten, wie Sie beschrieben haben. Ich habe NETSH
eher als IPCONFIG
auch verwendet.