VMware Workstation 10 on CentOS 6 & Promiscuous Mode - rharmonson/richtech GitHub Wiki
Linux vmnet devices by default can only be modified by root, thus running VMware Workstation as root is required to run hosts or virtual appliances using network interfaces in promiscuous mode. Unless you do the following:
- Create a group, promiscuous;
# groupadd promiscuos
- Add a user to the group;
# usermod -g -G promiscous <useraccount>
- Modify VMware network device privileges;
# chmod g+rw /dev/vmnet*
- Changes will not be instated after a reboot, thus edit
# vi /etc/rc.d/rc.local
- Append
chgrp promiscuous /dev/vmnet*
- Append
chmod g+rw /dev/vmnet*
- Exit saving changes then reboot.
- Done.