Linux 以编程方式上/下接口内核
在内核空间中启用或禁用接口的编程方式是什么?应该做什么?
What is the programmatic way of enabling or disabling an interface in kernel space? What should be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
...通过使用 IOCTL ...
...设置或取消设置 IFF_UP 位,具体取决于您是否要相应地打开或关闭接口,即:
从 Linux 网络文档。
...by using IOCTL's...
... with the IFF_UP bit set or unset depending on whether you want bring the interface up or down accordingly, i.e.:
Code copy-pasted from Linux networking documentation.
启动 eth0 的代码:
Code to bring eth0 up:
用法 :
usage :