From 336ff2901c5858463a5b1823e00995dd0530b950 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 14 Mar 2019 17:12:55 +0100 Subject: [PATCH] Correct table name (v4_networks) --- p4app/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4app/controller.py b/p4app/controller.py index ac392da..cc399a9 100644 --- a/p4app/controller.py +++ b/p4app/controller.py @@ -191,7 +191,7 @@ class L2Controller(object): if self.args.multicast_to_controller: self.listen_to_icmp6_multicast() - self.controller.table_clear("v4_routing") + self.controller.table_clear("v4_networks") for v4route in self.v4_routes[self.mode]: self.controller.table_add("v4_networks", "set_egress_port", [str(v4route['net'])], [str(v4route['port'])])