| /dpdk/doc/guides/prog_guide/ |
| H A D | rib_lib.rst | 80 * To find an exact match route: 99 struct rte_rib_node *route = NULL; 101 route = rte_rib_get_nxt(rib, RTE_IPV4(10,0,0,0), 24, route, RTE_RIB_GET_NXT_ALL); 102 } while (route != NULL) 157 route = NULL; 159 route = get_next(nh_table[fail_nh].list_head, route); 162 rte_rib_get_ip(route, &ip); 163 rte_rib_get_depth(route, &depth); 164 ext = rte_rib_get_ext(route); 169 rte_rib_set_nh(route, new_nh); [all …]
|
| H A D | fib_lib.rst | 40 * ``rte_fib_add()``: Add a new route with a corresponding next hop ID to the 43 * ``rte_fib_delete()``: Delete an existing route from the table.
|
| H A D | lpm_lib.rst | 10 that is typically used to find the best route match in IP forwarding applications.
|
| H A D | lpm6_lib.rst | 8 that is typically used to find the best match route in IPv6 forwarding applications.
|
| H A D | switch_representation.rst | 474 However this does not force such traffic to take a specific route. Creating
|
| H A D | member_lib.rst | 137 loop-free route is guaranteed.
|
| /dpdk/doc/guides/sample_app_ug/ |
| H A D | ip_frag.rst | 82 Skipping disabled port 3IP_FRAG: Socket 0: adding route 100.10.0.0/16 (port 0) 83 IP_FRAG: Socket 0: adding route 100.20.0.0/16 (port 1) 85 IP_FRAG: Socket 0: adding route 0101:0101:0101:0101:0101:0101:0101:0101/48 (port 0) 86 IP_FRAG: Socket 0: adding route 0201:0101:0101:0101:0101:0101:0101:0101/48 (port 1)
|
| H A D | l3_forward_access_ctrl.rst | 31 while this application uses the ACL library to perform both ACL and route entry lookup. 85 …It can be the forwarding port number if the rule is a route table entry or it can be a pointer to … 92 The application needs to acquire ACL and route rules before it runs. 94 To simplify the complexity of the priority field for each rule, all ACL and route entries are assum… 160 This is something like a default route entry. 216 …If a route rule is matched, it indicates the packet is not in the ACL list and should be forwarded. 251 * --rule_ipv4 FILENAME: Specifies the IPv4 ACL and route rules file 253 * --rule_ipv6 FILENAME: Specifies the IPv6 ACL and route rules file 310 As described earlier, both ACL and route rules are assumed to be saved in the same file. 317 while route rules save the forwarding port number.
|
| H A D | ip_reassembly.rst | 78 Skipping disabled port 3IP_FRAG: Socket 0: adding route 100.10.0.0/16 (port 0) 79 IP_RSMBL: Socket 0: adding route 100.20.0.0/16 (port 1) 82 IP_RSMBL: Socket 0: adding route 0101:0101:0101:0101:0101:0101:0101:0101/48 (port 0) 83 IP_RSMBL: Socket 0: adding route 0201:0101:0101:0101:0101:0101:0101:0101/48 (port 1)
|
| H A D | l3_forward_graph.rst | 172 lock-less mechanisms(RCU, etc) to add run-time forwarding data like route and 178 :start-after: Add route to ip4 graph infra. 8< 179 :end-before: >8 End of adding route to ip4 graph infa.
|
| H A D | l3_forward.rst | 50 During the initialization phase route rules for IPv4 and IPv6 are read from rule files. 234 The application parses the rules from the file and adds them to the appropriate route table by call… 238 The format of the route rules differs based on which lookup method is being used.
|
| /dpdk/examples/pipeline/examples/ |
| H A D | selector.spec | 18 ; for any given route as opposed to a single next hop per route; for every packet, its next hop is 19 ; picked out of the set of next hops defined for the route while preserving the packet ordering
|
| H A D | fib.spec | 7 ; logical table to provide the matching route for the IP destination address of the input packet. 9 ; next hops (of equal or different weights, in case of WCMP [4]) to be provided for each route. 13 ; next hops associated with the current route, out of which a single next hop is selected based on a
|
| /dpdk/usertools/ |
| H A D | dpdk-devbind.py | 234 route = subprocess.check_output(["ip", "-o", "route"]) 236 route = "\n".join(filter(lambda ln: not ln.startswith("169.254"), 237 route.decode().splitlines())) 238 rt_info = route.split()
|
| /dpdk/doc/guides/platform/ |
| H A D | bluefield.rst | 78 - libnl-route-3 97 cp -a /lib64/libnl-route-3* lib64/
|
| /dpdk/doc/api/ |
| H A D | doxy-api-index.md | 135 [LPM IPv4 route] (@ref rte_lpm.h), 136 [LPM IPv6 route] (@ref rte_lpm6.h),
|
| /dpdk/examples/ip_pipeline/examples/ |
| H A D | route.cli | 14 ; +-----------> SINK0 (route miss)
|
| /dpdk/doc/guides/nics/ |
| H A D | igc.rst | 68 The Flow Director works in receive mode to identify specific flows or sets of flows and route
|
| H A D | hns3.rst | 174 flows and route them to specific queues.
|
| H A D | i40e.rst | 357 The Flow Director works in receive mode to identify specific flows or sets of flows and route them …
|
| H A D | enic.rst | 115 host to route intra-host VM traffic.
|
| /dpdk/doc/guides/vdpadevs/ |
| H A D | ifc.rst | 44 route HW interrupt to virtio driver, create notify relay thread to translate
|
| /dpdk/app/test-fib/ |
| H A D | main.c | 392 set_rnd_ipv6(uint8_t *addr, uint8_t *route, int depth) in set_rnd_ipv6() argument 401 addr[i] = route[i]; in set_rnd_ipv6() 404 addr[i] |= route[i] & UINT8_MAX << (8 - depth); in set_rnd_ipv6()
|
| /dpdk/doc/guides/prog_guide/img/ |
| H A D | rib_internals.svg | 89 …t883">Node containing a <tspan x="62.17" dy="1.2em" class="st12" id="tspan881">route</tspan></text>
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_16_07.rst | 156 * Configure the MAC address in the routing pipeline and automatic route
|