Newer ciscos have become more picky, and will not accept the MULTICAST bit

being set for unicast packets.
This commit is contained in:
phk 2000-03-17 17:06:33 +00:00
parent 9e044c060f
commit 77129d8b98

View File

@ -375,7 +375,7 @@ cisco_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
goto out;
}
h = mtod(m, struct cisco_header *);
h->address = CISCO_MULTICAST; /* broadcast address */
h->address = CISCO_UNICAST;
h->control = 0;
switch (pep->af) {