mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Enable proxy ARP answers on any of the bridged interfaces if proxy record
belongs to another interface within the bridge group. PR: kern/94408 Submitted by: Eygene A. Ryabinkin MFC after: 1 month
This commit is contained in:
parent
b3a1f9373a
commit
5feebeeb53
1 changed files with 6 additions and 3 deletions
|
|
@ -863,10 +863,13 @@ reply:
|
|||
} else {
|
||||
/*
|
||||
* Return proxied ARP replies only on the interface
|
||||
* where this network resides. Otherwise we may
|
||||
* conflict with the host we are proxying for.
|
||||
* or bridge cluster where this network resides.
|
||||
* Otherwise we may conflict with the host we are
|
||||
* proxying for.
|
||||
*/
|
||||
if (rt->rt_ifp != ifp) {
|
||||
if (rt->rt_ifp != ifp &&
|
||||
(rt->rt_ifp->if_bridge != ifp->if_bridge ||
|
||||
ifp->if_bridge == NULL)) {
|
||||
RT_UNLOCK(rt);
|
||||
goto drop;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue