Enabling and Disabling Promiscuous Mode
Written by sdx
Tuesday, 24 September 2013 14:11

In both Linux and FreeBSD, we can enable/disable promiscuous mode for an interface using "ifconfig". The parameters "promisc" and "-promisc" are used to enable and disable promiscuous mode respectively. In Solaris, promiscuous mode can be enabled using "snoop".
Examples
Linux
Enable promiscuous mode of the interface eth0:
#
ifconfig eth0 promiscDisable promiscuous mode of the interface eth0
#
ifconfig eth0 -promiscFreeBSD
Enable promiscuous mode of the interface nxge0
#
ifconfig nxge0 promiscDisable promiscuous mode of the interface nxge0
#
ifconfig nxge0 -promiscSolaris
Enable promiscuous mode of the interface vxge0
#
snoop -d vxge0Quit snoop to disable promiscuous mode