Clear Filters
Clear Filters

get computer IP problem

47 views (last 30 days)
Yu Li
Yu Li on 6 Nov 2018
Commented: Stephan on 7 Nov 2018
I use command [status,result] = system('arp -a'), to get the IP address of my computer. there are lots of IP in the variable 'result', such as dynamic, staticstic, etc.
meanwhile, the result are also found to be different at different day. for example, using the same command, the variable 'result' is different between yesterday and today.
just want know what paramters in the 'result' is fixed in the machine, which will not changed with time?
Thanks!
Yu
  2 Comments
Steven Lord
Steven Lord on 7 Nov 2018
What do you plan to do with this information? If we know your ultimate goal, we may be able to offer a way to achieve that goal without having to parse text returned by a system command.

Sign in to comment.

Accepted Answer

Stephan
Stephan on 6 Nov 2018
Edited: Stephan on 6 Nov 2018
Hi,
try:
[~, result] = system('ipconfig')
result:
Windows-IP-Konfiguration
Ethernet-Adapter LAN-Verbindung:
Verbindungsspezifisches DNS-Suffix: **.*********.de
IPv4-Adresse . . . . . . . . . . : **.***.**.**
Subnetzmaske . . . . . . . . . . : 255.255.255.0
Standardgateway . . . . . . . . . : **.***.**.*
for more detailed information use:
[~, result] = system('ipconfig -all')
The arp gives the adress Resolution protocoll - not your IP adress.
  3 Comments
Walter Roberson
Walter Roberson on 7 Nov 2018
IPv4 address is not likely to be unique for your machine.
Yu Li
Yu Li on 7 Nov 2018
thank you

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!