标签:
转自: http://blog.csdn.net/henulwj/article/details/50347489
The virtual machine’s operating system has attempted to enable promiscuous mode on adapter ‘Ethernet0’. This is not allowed for security reasons.
Please go to the Web page “http://vmware.com/info?id=161” for help enabling promiscuous mode in the virtual machine.
解决办法
groupadd vmwaregroup
usermod -a -G vmwaregroup netseclab
chgrp vmwaregroup /dev/vmnet0
chgrp vmwaregroup /dev/vmnet8
chmod g+rw /dev/vmnet0
chmod g+rw /dev/vmnet8
2.简单粗暴
chmod a+rw /dev/vmnet0
chmod a+rw /dev/vmnet8
Linux下VMware虚拟机网卡不能运行在混杂模式解决办法
标签:
原文地址:http://www.cnblogs.com/pinganzi/p/5845183.html