以编程方式获取接口的驱动程序名称
除了解析“ethtool -i interface_name”的输出之外,是否有一种方法可以以编程方式驱动接口名称?
如果可以从文件中检索它,我会很高兴。
Is there a way programmatically driver name of interface, except of parsing output of "ethtool -i interface_name"?
I would happy if it can be retrieved from a file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查询 sysfs 来获取它。读取
/sys/class/net/$interface/device/driver
符号链接的目标并获取最后一个/
之后的部分。例子:
You can query
sysfs
for it. Read the target of the/sys/class/net/$interface/device/driver
symlink and take the part after the last/
.Example: