+ ip_add_fn = path.join(template_dir, ip_add_com)
+ ip_del_fn = path.join(template_dir, ip_del_com)
+ ip_flush_fn = path.join(template_dir, ip_flush_com)
+ self.ip_add_template = Template(filename=ip_add_fn)
+ self.ip_del_template = Template(filename=ip_del_fn)
+ self.ip_flush_template = Template(filename=ip_flush_fn)
+
+ route_add_fn = path.join(template_dir, route_add_com)
+ route_del_fn = path.join(template_dir, route_del_com)
+ route_flush_fn = path.join(template_dir, route_flush_com)
+ self.route_add_template = Template(filename=route_add_fn)
+ self.route_del_template = Template(filename=route_del_fn)
+ self.route_flush_template = Template(filename=route_flush_fn)
+