You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
333 B
19 lines
333 B
graph G { |
|
node [ shape="box"]; |
|
|
|
v4host [ label="IPv4 hosts" ] |
|
v6host [ label="IPv6 hosts" ] |
|
|
|
nat64gw [ label="P4 switch: NAT64" ]; |
|
controller [ label="P4 Controller" ]; |
|
|
|
nat64gw--v4host; |
|
|
|
v6host--nat64gw; |
|
|
|
nat64gw--controller [ label="custom protocol" ]; |
|
|
|
{ rank="same" nat64gw, controller }; |
|
|
|
|
|
}
|
|
|