mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Add support for static ARP (IPv4) and neighbor cache (IPv6) entries per interface. Static entries are installed as permanent kernel neighbor table entries that are never evicted by normal ARP/NDP aging. Fixes #819 Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
25 lines
536 B
Plaintext
25 lines
536 B
Plaintext
graph "1x2" {
|
|
layout="neato";
|
|
overlap="false";
|
|
esep="+80";
|
|
|
|
node [shape=record, fontname="DejaVu Sans Mono, Book"];
|
|
edge [color="cornflowerblue", penwidth="2", fontname="DejaVu Serif, Book"];
|
|
|
|
host [
|
|
label="host | { <mgmt> mgmt | <data> data }",
|
|
pos="0,12!",
|
|
requires="controller",
|
|
];
|
|
|
|
target [
|
|
label="{ <mgmt> mgmt | <data> data } | target",
|
|
pos="10,12!",
|
|
|
|
requires="infix",
|
|
];
|
|
|
|
host:mgmt -- target:mgmt [requires="mgmt", color=lightgrey]
|
|
host:data -- target:data [color=black]
|
|
}
|