From: marko Date: Thu, 18 Aug 2005 21:39:57 +0000 (+0000) Subject: Always put rj45 node in promiscous mode - previously it wouldn't receive X-Git-Url: https://git.entuzijast.net/?a=commitdiff_plain;h=a1a425f882b1b188edfbe4c0f44e1f30f491015a;p=imunes.git Always put rj45 node in promiscous mode - previously it wouldn't receive any packets for virtual MAC addresses. Bug found by: Submitted by: Requested by: Reviewed by: Approved by: Obtained from: --- diff --git a/rj45.tcl b/rj45.tcl index 7a5bccb..7628ca5 100755 --- a/rj45.tcl +++ b/rj45.tcl @@ -44,7 +44,7 @@ proc $MODULE.layer {} { proc $MODULE.instantiate { eid node } { set ifname [getNodeName $node] - nexec ifconfig $ifname up + nexec ifconfig $ifname up promisc return }