blob: b125f3c727769569b07ca67852186251991d32b2 [file] [log] [blame]
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001
2from vpp_interface import VppInterface
Neale Ranns0f26c5a2017-03-01 15:12:11 -08003
4
5class VppMPLSTunnelInterface(VppInterface):
6 """
7 VPP MPLS Tunnel interface
8 """
9
Neale Rannsda78f952017-05-24 09:15:43 -070010 def __init__(self, test, paths, is_multicast=0, is_l2=0):
Neale Ranns0f26c5a2017-03-01 15:12:11 -080011 """ Create MPLS Tunnel interface """
Klement Sekerab9ef2732018-06-24 22:49:33 +020012 super(VppMPLSTunnelInterface, self).__init__(test)
Neale Ranns0f26c5a2017-03-01 15:12:11 -080013 self.t_paths = paths
14 self.is_multicast = is_multicast
Neale Rannsda78f952017-05-24 09:15:43 -070015 self.is_l2 = is_l2
Neale Ranns0f26c5a2017-03-01 15:12:11 -080016
17 def add_vpp_config(self):
Klement Sekeraff4ba352018-05-30 10:32:21 +020018 sw_if_index = 0xffffffff
Neale Ranns0f26c5a2017-03-01 15:12:11 -080019 for path in self.t_paths:
Neale Ranns31ed7442018-02-23 05:29:09 -080020 lstack = path.encode_labels()
21
Neale Ranns0f26c5a2017-03-01 15:12:11 -080022 reply = self.test.vapi.mpls_tunnel_add_del(
Klement Sekeraff4ba352018-05-30 10:32:21 +020023 sw_if_index,
Neale Ranns0f26c5a2017-03-01 15:12:11 -080024 1, # IPv4 next-hop
25 path.nh_addr,
26 path.nh_itf,
27 path.nh_table_id,
28 path.weight,
Neale Ranns7c922dc2018-08-30 06:12:27 -070029 next_hop_via_label=path.nh_via_label,
Neale Ranns31ed7442018-02-23 05:29:09 -080030 next_hop_out_label_stack=lstack,
31 next_hop_n_out_labels=len(lstack),
Neale Rannsda78f952017-05-24 09:15:43 -070032 is_multicast=self.is_multicast,
33 l2_only=self.is_l2)
Klement Sekeraff4ba352018-05-30 10:32:21 +020034 sw_if_index = reply.sw_if_index
Klement Sekerab9ef2732018-06-24 22:49:33 +020035 self.set_sw_if_index(sw_if_index)
Neale Ranns0f26c5a2017-03-01 15:12:11 -080036
37 def remove_vpp_config(self):
38 for path in self.t_paths:
Klement Sekeraff4ba352018-05-30 10:32:21 +020039 self.test.vapi.mpls_tunnel_add_del(
Neale Ranns0f26c5a2017-03-01 15:12:11 -080040 self.sw_if_index,
41 1, # IPv4 next-hop
42 path.nh_addr,
43 path.nh_itf,
44 path.nh_table_id,
45 path.weight,
Neale Ranns7c922dc2018-08-30 06:12:27 -070046 next_hop_via_label=path.nh_via_label,
Neale Ranns0f26c5a2017-03-01 15:12:11 -080047 next_hop_out_label_stack=path.nh_labels,
48 next_hop_n_out_labels=len(path.nh_labels),
49 is_add=0)