Linux 运营商检测通知
Linux 中是否有接口可以获取网络接口运营商更改的通知?我知道可以使用 SIOCETHTOOL 轮询接口,但想知道是否有任何方法可以收到通知或在运营商检测更改时返回任何阻止调用?
Is there an interface in Linux to get notification of a network interface carrier change? I know its possible to poll an interface with SIOCETHTOOL, but was wondering if there was any way to get notified or any blocking calls that would return on carrier detection changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否需要运营商转换或接口状态更改?对于接口状态,您可以侦听 NETLINK_ROUTE netlink 套接字并等待 RTM_NEWLINK 和 RTM_DELLINK 消息
Do you need carrier transition or interface state change? For the interface state you could listen to the NETLINK_ROUTE netlink socket and wait for RTM_NEWLINK and RTM_DELLINK messages