From 77129d8b98aaa140b8bb2fbceadf6bcf86adb9b0 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 17 Mar 2000 17:06:33 +0000 Subject: Newer ciscos have become more picky, and will not accept the MULTICAST bit being set for unicast packets. --- sys/netgraph/ng_cisco.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netgraph') diff --git a/sys/netgraph/ng_cisco.c b/sys/netgraph/ng_cisco.c index a947240..a65dd0c 100644 --- a/sys/netgraph/ng_cisco.c +++ b/sys/netgraph/ng_cisco.c @@ -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) { -- cgit v1.1