...
| Code Block |
|---|
# if the above setup doesn't resolve the issue, try the following steps:
# Make sure to flush the arp cache from the other nodes, so that there is no confusion with addressing.
ip -s -s neigh flush all
arp -n # show arp entries
# Look at the rules by:
# ip rule show
# make sure that the rules are in correct priority.
# 0 is the highest prio.
# 0 is always going to be the local routing table, which has all the default local and broadcast routes.
# 32766 is the main routing table. So all other policy routing tables should be higher than this one. |
...