blob: 6be060b0dd1343a9133486149a0c1541442964a5 [file] [log] [blame]
Steve Shin99a0e602017-07-01 04:16:20 +00001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Jakub Grajciar1c684f92020-01-30 14:01:17 +010016option version = "2.0.0";
17
18import "vnet/interface_types.api";
19import "vnet/ip/ip_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040020
Steve Shin99a0e602017-07-01 04:16:20 +000021/** \brief configure global parameter for LLDP
22 @param client_index - opaque cookie to identify the sender
23 @param context - sender context, to match reply w/ request
24 @param system_name - VPP system name
25 @param tx_hold - multiplier for tx_interval when setting time-to-live (TTL)
26 value in the LLDP packets
27 @param tx_interval - time interval, in seconds, between each LLDP frames
28*/
29autoreply define lldp_config
30{
31 u32 client_index;
32 u32 context;
Steve Shin99a0e602017-07-01 04:16:20 +000033 u32 tx_hold;
34 u32 tx_interval;
Jakub Grajciar1c684f92020-01-30 14:01:17 +010035 string system_name[];
Steve Shin99a0e602017-07-01 04:16:20 +000036};
37
38/** \brief Interface set LLDP request
39 @param client_index - opaque cookie to identify the sender
40 @param context - sender context, to match reply w/ request
41 @param sw_if_index - interface for which to enable/disable LLDP
Steve Shin9a6fcef2017-10-11 13:55:16 -070042 @param mgmt_ip4_addr - management ip4 address of the interface
43 @param mgmt_ip6_addr - management ip6 address of the interface
44 @param mgmt_oid - OID(Object Identifier) of the interface
Steve Shin99a0e602017-07-01 04:16:20 +000045 @param enable - if non-zero enable, else disable
Jakub Grajciar1c684f92020-01-30 14:01:17 +010046 @param port_desc - local port description
Steve Shin99a0e602017-07-01 04:16:20 +000047*/
48autoreply define sw_interface_set_lldp
49{
50 u32 client_index;
51 u32 context;
Jakub Grajciar1c684f92020-01-30 14:01:17 +010052 vl_api_interface_index_t sw_if_index;
53 vl_api_ip4_address_t mgmt_ip4;
54 vl_api_ip6_address_t mgmt_ip6;
Steve Shin9a6fcef2017-10-11 13:55:16 -070055 u8 mgmt_oid[128];
Jakub Grajciar1c684f92020-01-30 14:01:17 +010056 bool enable [default=true];
57 string port_desc[];
Steve Shin99a0e602017-07-01 04:16:20 +000058};