diff --git a/session/targets.go b/session/targets.go index 9b202888..de7559fd 100644 --- a/session/targets.go +++ b/session/targets.go @@ -137,7 +137,7 @@ func (tp *Targets) Remove(ip, mac string) { } func (tp *Targets) shouldIgnore(ip string) bool { - return (ip == tp.Interface.IpAddress || ip == tp.Gateway.IpAddress) + return (ip == tp.Interface.IpAddress || ip == tp.Gateway.IpAddress || ip == "255.255.255.255") } func (tp *Targets) Has(ip string) bool {