Skip to content
Merged
3 changes: 2 additions & 1 deletion orchagent/neighorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,8 @@ bool NeighOrch::getNeighborEntry(const NextHopKey &nexthop, NeighborEntry &neigh
{
return false;
}
if (m_intfsOrch->isRemoteSystemPortIntf(nexthop.alias))
if ((m_intfsOrch->isRemoteSystemPortIntf(nexthop.alias)) ||
(gPortsOrch->isInbandPort(nexthop.alias)))
{
gPortsOrch->getInbandPort(inbp);
assert(inbp.m_alias.length());
Expand Down
Loading