介绍下,在debain(linux系统)中重启网卡的方法。
方法1,使用ifconfig
重启eth0:
复制代码 代码示例:
ifconfig eth0 stop
ifconfig eth0 start
方法2,ifdown和ifup
复制代码 代码示例:
ifdown eth0
ifup eth0
方法三,service重启
复制代码 代码示例:
service network restart/stop/start
另外,查看某个网卡的数据流量的方法:
复制代码 代码示例:
watch -n 1 "/sbin/ifconfig eth0 | grep bytes"
更多内容,大家参考下本站的debian栏目,里面有更多有关debian系统的技术文章。