get computer IP problem

45 vues (au cours des 30 derniers jours)
Yu Li
Yu Li le 6 Nov 2018
Commenté : cui,xingxing le 30 Août 2024
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
  3 commentaires
Stephan
Stephan le 7 Nov 2018
cui,xingxing
cui,xingxing le 30 Août 2024
using following matlab code to get computer IP address
% Use Java's InetAddress class to get the local host
host = java.net.InetAddress.getLocalHost();
% Get the IP address as a string
ipAddress = char(host.getHostAddress());
% Display the IP address
disp(['Local IP Address: ', ipAddress]);
Local IP Address: 10.168.118.61

Connectez-vous pour commenter.

Réponse acceptée

Stephan
Stephan le 6 Nov 2018
Modifié(e) : Stephan le 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 commentaires
Walter Roberson
Walter Roberson le 7 Nov 2018
IPv4 address is not likely to be unique for your machine.
Yu Li
Yu Li le 7 Nov 2018
thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Language Fundamentals dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by