summaryrefslogtreecommitdiffstats
path: root/test/vpp_lo_interface.py
blob: 9493a70019d11d3ca7d68cccf59f3486c743b08a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from vpp_object import VppObject
from vpp_interface import VppInterface


class VppLoInterface(VppInterface, VppObject):
    """VPP loopback interface."""

    def __init__(self, test, lo_index):
        """ Create VPP loopback interface """
        self._test = test
        self.add_vpp_config()
        super(VppLoInterface, self).__init__(test)
        self._lo_index = lo_index

    def add_vpp_config(self):
        r = self.test.vapi.create_loopback()
        self._sw_if_index = r.sw_if_index

    def remove_vpp_config(self):
        self.test.vapi.delete_loopback(self.sw_if_index)

    def query_vpp_config(self):
        dump = self.vapi.sw_interface_dump()
        return self.is_interface_config_in_dump(dump)

    def is_interface_config_in_dump(self, dump):
        for i in dump:
            if i.interface_name.rstrip(' \t\r\n\0') == self.name and \
               i.sw_if_index == self.sw_if_index:
                return True
        else:
            return False

    def object_id(self):
        return "loopback-%d" % self._sw_if_index
, 0); } else { vnet_feature_enable_disable ("ip4-unicast", "gbp-learn-ip4", sw_if_index, 0, 0, 0); vnet_feature_enable_disable ("ip6-unicast", "gbp-learn-ip6", sw_if_index, 0, 0, 0); } } static clib_error_t * gbp_learn_init (vlib_main_t * vm) { gbp_learn_main_t *glm = &gbp_learn_main; vlib_thread_main_t *tm = &vlib_thread_main; vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "gbp-learn-l2"); /* Initialize the feature next-node indices */ feat_bitmap_init_next_nodes (vm, node->index, L2INPUT_N_FEAT, l2input_get_feat_names (), glm->gl_l2_input_feat_next); throttle_init (&glm->gl_l2_throttle, tm->n_vlib_mains, GBP_ENDPOINT_HASH_LEARN_RATE); throttle_init (&glm->gl_l3_throttle, tm->n_vlib_mains, GBP_ENDPOINT_HASH_LEARN_RATE); glm->gl_logger = vlib_log_register_class ("gbp", "learn"); return 0; } VLIB_INIT_FUNCTION (gbp_learn_init); /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */