diff --git a/doc/plan.org b/doc/plan.org index aafb199..0952f50 100644 --- a/doc/plan.org +++ b/doc/plan.org @@ -719,6 +719,20 @@ INFO:main:unhandled reassambled=>>> from table TABLE_V6_NETWORKS INFO:main:unhandled reassambled=>>> from table TABLE_V6_NETWORKS INFO:main:unhandled reassambled=>>> from table TABLE_V6_NETWORKS +******* DONE Is 10.1.1.1/x in the nat64 table? yes +Adding entry to lpm match table nat46 +match key: LPM-0a:01:01:00/24 +action: nat46_static +runtime data: 20:01:0d:b8:00:00:00:00:00:00:00:00:00:00:00:00 0a:01:01:00 20:01:0d:b8:00:01:00:00:00:00:00:00:00:00:00:00 +Entry has been added with handle 0 +******* DONE if nat46_static is called, why is the ethernet type still ipv4? -> log! +******** DONE nat46 table is applied +******* TODO Check why there is a miss in the table +[09:57:31.415] [bmv2] [T] [thread 9332] [105.0] [cxt 0] Applying table 'MyIngress.v6_networks' +[09:57:31.415] [bmv2] [D] [thread 9332] [105.0] [cxt 0] Looking up key: + * hdr.ipv6.dst_addr : 20010db8000000000000000000000001 + +[09:57:31.415] [bmv2] [D] [thread 9332] [105.0] [cxt 0] Table 'MyIngress.v6_networks': miss ***** TODO transform protocol specific: icmp -> icmp6 diff --git a/p4app/controller.py b/p4app/controller.py index 4ffd3d9..d10839d 100755 --- a/p4app/controller.py +++ b/p4app/controller.py @@ -260,7 +260,7 @@ class L2Controller(object): self.controller.table_clear("v6_networks") for v6route in self.v6_routes[self.mode]: #self.controller.table_add("v6_networks", "set_egress_port", [str(v6route['net'])], [str(v6route['port'])]) - self.controller.table_add("v4_networks", "set_egress_port_and_mac", + self.controller.table_add("v6_networks", "set_egress_port_and_mac", [str(v6route['net'])], [str(v6route['port']), str(v6route['mac']),