get computer IP problem

51 次查看(过去 30 天)
Yu Li
Yu Li 2018-11-6
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 个评论
cui,xingxing
cui,xingxing 2024-8-30
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

请先登录,再进行评论。

采纳的回答

Stephan
Stephan 2018-11-6
编辑:Stephan 2018-11-6
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Language Fundamentals 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by