当前位置 : 主页 > 手机开发 > harmonyos >

设置网卡混杂模式

来源:互联网 收集:自由互联 发布时间:2023-10-08
测试平台:Ubuntu 12.04 LST 方法一: ~$ sudo ifconfig eth1 promisc# 设置混杂模式~$ sudo ifconfig eth1pre name="code" class="html"ifconfig eth1 promisc 方法二: ~$ sudo ip link set eth1 promisc on~$ sudo ip link set eth1 pr


测试平台:Ubuntu 12.04 LST

方法一:

~$ sudo ifconfig eth1 promisc	# 设置混杂模式
~$ sudo ifconfig eth1<pre name="code" class="html">ifconfig eth1 promisc


方法二:

~$ sudo ip link set eth1 promisc on
~$ sudo ip link set eth1 promisc off



注意:上面两种方法系统重启之后混杂模式会失效



永久设置混杂模式

方法一:加入 /etc/rc.local

ifconfig eth1 promisc

or

ip link set eth1 promisc on


方法二:/etc/network/interfaces

iface eth1 inet manual
  up ifconfig eth1 0.0.0.0 up
  up ifconfig eth1 promisc





参考资料

Permanently set interface in promiscuous mode.Setting up network interfaces to promiscuous mode

FlatDHCP模式单nova-network主机部署示例

上一篇:POJ 2549 Sumsets
下一篇:没有了
网友评论