Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何独立于操作系统使用 Perl 检查指定的本地拨号接口是打开还是关闭?
只需使用类似的东西
$结果1= ifconfig -a; # (或 ipconfig /all in windows),
ifconfig -a
然后对结果执行正则表达式匹配以查找该特定接口名称及其状态(或是否存在 IP 地址)。
在 linux 中,接口名称应该是 ppp0 。
首先使用该接口 up/down/absent 测试 ifconfig/ipconfig 输出,以确保您考虑所有情况。