使用PowerShell从com端口获取Linux设备IP地址

问题描述 投票:0回答:2

我目前正在建立一个运行Linux的基于ARM的测试板,我需要从Windows机器上访问它。该测试板通过COM端口使用USB转串口电缆连接。我使用PowerShell运行命令并控制测试板。我陷入了一个阶段,我需要查询测试板以找出其IP地址并将其存储在我的Windows主机上的变量中。

这就是我用来显示IP地址的方法:

$port.WriteLine("ifconfig | grep -A 1 'gphy' | tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1")

当我从控制台读取输出时,我将ifconfig命令以及IP地址输入到我的变量中:

$ipAddr = $port.ReadExisting()
$ipAddr

输出类似于:

ifconfig | grep -A 1 'gphy' | tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1
123.33.33.150
#

我无法仅将IP地址作为字符串。我的方法是正确的还是我在这里做错了什么?查询IP地址的最佳方法是什么?

linux windows powershell serial-port ip-address
2个回答
2
投票

只需使用子字符串或正则表达式来提取您想要的值。

$ipaddr = @"
ifconfig | grep -A 1 'gphy' | tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1
123.33.33.150
"@
$regex = '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'
(($ipaddr | Select-String -Pattern $regex).Matches).Value

结果

123.33.33.150

1
投票

在ARM Linux中,可以设置连接到Windows的端口的echo。 例如,如果连接端口是/ dev / ttyS0,请将以下行添加到启动脚本。

stty -F /dev/ttyS0 -echo

但是,除非您更改设置,否则所有写入数据都不会在其他用途​​中回显。

© www.soinside.com 2019 - 2024. All rights reserved.