|
| |
.ListIPAddr
Description
- Lists all IP Addresses of the local machine as "nnn.nnn.nnn.nnn", "nnn.nnn.nnn.nnn", etc., one per line.
Syntax
At the Command Prompt
|
C:\>. ListIPAddr |
|
C:\>%.ListIPAddr% |
|
C:\>FOR /F
%A IN ('%.eListIPAddr%') DO @ECHO:%A |
In a Script
|
%.ListIPAddr% |
|
FOR /F %%A IN ('%.eListIPAddr%')
DO @ECHO:%%A |
Parameters and Switches
Errorlevels and Output Variables
|
Display to
STDOUT |
|
Value of
#IPAddr |
|
Error
Level |
|
Description of Result |
|
172.21.7.14
207.65.43.10 |
|
n/a |
|
n/a |
|
All IP Addresses displayed to
STDOUT. |
Examples, Notes and Instructions
NT
2K
XP
K3 |
C:\GuardPost>. ListIPAddr
172.21.7.14
207.65.43.10
C:\GuardPost>%.ListIPAddr%
172.21.7.14
207.65.43.10
C:\GuardPost>FOR /F %A IN
('%.eListIPAddr%') DO @ECHO:%A
172.21.7.14
207.65.43.10 |
- To separate into individual octets, use
FOR /F "tokens=1-4 delims=." %%A IN ('%.eListIPAddr%')
DO @(
ECHO:Octet1=%%A
ECHO:Octet2=%%B
ECHO:Octet3=%%C
ECHO:Octet4=%%D
)
Related .Mount/\Commands, #Constants,
$Functions, :Procedures
|
Resource |
|
Short Description |
|
.GetIPAddr |
|
Displays the current IP Address as nnn.nnn.nnn.nnn, or none or multi) -AND- updates #IPAddr |
|
.ListIPGateway |
|
Lists one or more Default Gateway Addresses as nnn.nnn.nnn.nnn or returns nothing |
|
.ListIPMask |
|
Lists one or more Subnet Masks as nnn.nnn.nnn.nnn or returns nothing |
|
.ListMac |
|
Lists one or more MACs (Hardware Addresses) as xx-xx-xx-xx-xx-xx or returns nothing |
|
.ListNic |
|
Lists one or more NIC "Description" text(s) from "IPConfig /all" as "text" or returns nothing |
|
#IPMask |
|
IP Subnet Mask in nnn.nnn.nnn.nnn format |
|
#IPGateway |
|
IP Default Gateway in nnn.nnn.nnn.nnn format |
|
#mac |
|
Hardware (MAC) address xx-xx-xx-xx-xx-xx format |
|
#nic |
|
NIC description text from "IPConfig /all" |
|
K
E
Y |
Common Commands |
INTERNAL |
External |
/SWITCH |
Parameter |
Help text |
AddonTool |
|
Mounted Commands |
.Mount/\Command |
CmdShorthand |
#Constant |
$FUNCTION |
:Procedure |
!GuardNote |
|
Operating Systems |
NT/2K/XP/K3 |
NT Only |
NT/2K |
2K Only |
2K/XP |
XP Only |
XP/K3 |
K3 Only |
2K/XP/K3 |
|