mirror of
				https://github.com/Telecominfraproject/ols-ucentral-schema.git
				synced 2025-10-31 01:58:03 +00:00 
			
		
		
		
	Compare commits
	
		
			10 Commits
		
	
	
		
			fix/fix_in
			...
			main
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 02f749cc11 | ||
|   | 5b00327adc | ||
|   | 117aa70d4f | ||
|   | c3073a9a45 | ||
|   | 04a8901620 | ||
|   | 23ebf25cba | ||
|   | 05849922ed | ||
|   | 9228a6c290 | ||
|   | 30b5864ada | ||
|   | 598af29d51 | 
| @@ -522,18 +522,18 @@ properties: | ||||
|       with independent packet-per-second (pps) thresholds. A limit-pps value of 0 implies the control is disabled for that traffic type. | ||||
|     type: object | ||||
|     properties: | ||||
|     broadcast-pps: | ||||
|       type: integer | ||||
|       minimum: 0 | ||||
|       default: 0 | ||||
|       description: Maximum allowed broadcast packets per second. 0 disables broadcast storm control. | ||||
|     multicast-pps: | ||||
|       type: integer | ||||
|       minimum: 0 | ||||
|       default: 0 | ||||
|       description: Maximum allowed multicast packets per second. 0 disables multicast storm control. | ||||
|     unknown-unicast-pps: | ||||
|       type: integer | ||||
|       minimum: 0 | ||||
|       default: 0 | ||||
|       description:  Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control. | ||||
|       broadcast-pps: | ||||
|         type: integer | ||||
|         minimum: 0 | ||||
|         default: 0 | ||||
|         description: Maximum allowed broadcast packets per second. 0 disables broadcast storm control. | ||||
|       multicast-pps: | ||||
|         type: integer | ||||
|         minimum: 0 | ||||
|         default: 0 | ||||
|         description: Maximum allowed multicast packets per second. 0 disables multicast storm control. | ||||
|       unknown-unicast-pps: | ||||
|         type: integer | ||||
|         minimum: 0 | ||||
|         default: 0 | ||||
|         description:  Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control. | ||||
|   | ||||
| @@ -439,58 +439,66 @@ properties: | ||||
|               description: Configures the peer-link, which could be a physical port or a trunk group that connects the two MC-LAG peer switches. | ||||
|               type: object | ||||
|               properties: | ||||
|                 type: | ||||
|                 link-type: | ||||
|                   description: Defines the type of peer-link, either 'port' or 'trunk-group' | ||||
|                   type: string | ||||
|                   enum: | ||||
|                     - port | ||||
|                     - trunk-group | ||||
|                   default: trunk-group | ||||
|                 value: | ||||
|                   description: Specifies the port or trunk-group ID for the peer-link. | ||||
|                 port-id: | ||||
|                   description: Specifies the physical port name used as peer-link (only valid if type = port). | ||||
|                   type: string | ||||
|                   examples: | ||||
|                     - "Ethernet1" | ||||
|                     - "Ethernet2" | ||||
|                 trunk-id: | ||||
|                   description: Specifies the trunk group ID used as peer-link (only valid if type = trunk-group). | ||||
|                   type: integer | ||||
|                   minimum: 1 | ||||
|                   maximum: 64 | ||||
|             mclag-group: | ||||
|               description: Configures the MC-LAG group, which binds the interfaces into a multi-chassis LAG. | ||||
|               type: object | ||||
|               properties: | ||||
|                 group-id: | ||||
|                   description: Defines the unique MC-LAG group identifier. | ||||
|                   type: integer | ||||
|                   minimum: 1 | ||||
|                   maximum: 128 | ||||
|                 members: | ||||
|                   description: List of interfaces that participate in the MC-LAG group. | ||||
|                   type: array | ||||
|                   items: | ||||
|                     type: string | ||||
|                     description: Interface names that are part of the MC-LAG group. | ||||
|                     examples: | ||||
|                       - eth0 | ||||
|                       - eth1 | ||||
|                 lacp-config: | ||||
|                   description: LACP configuration settings for the MC-LAG group. | ||||
|                   type: object | ||||
|                   properties: | ||||
|                     lacp-enable: | ||||
|                       description: Enables or disables LACP for the MC-LAG group. | ||||
|                       type: boolean | ||||
|                       default: true | ||||
|                     lacp-role: | ||||
|                       description: Configures the LACP role as 'actor' or 'partner' | ||||
|               description: Configures the MC-LAG group(s), which binds the interfaces into a multi-chassis LAG. | ||||
|               type: array | ||||
|               items: | ||||
|                 type: object | ||||
|                 properties: | ||||
|                   group-id: | ||||
|                     description: Defines the unique MC-LAG group identifier. | ||||
|                     type: integer | ||||
|                     minimum: 1 | ||||
|                     maximum: 128 | ||||
|                   members: | ||||
|                     description: List of interfaces that participate in the MC-LAG group. | ||||
|                     type: array | ||||
|                     items: | ||||
|                       type: string | ||||
|                       enum: | ||||
|                         - actor | ||||
|                         - partner | ||||
|                       default: actor | ||||
|                     lacp-timeout: | ||||
|                       description: Sets the LACP timeout as either 'short' or 'long'. | ||||
|                       type: string | ||||
|                       enum: | ||||
|                         - short | ||||
|                         - long | ||||
|                       default: long | ||||
|                       description: Interface names that are part of the MC-LAG group. | ||||
|                       examples: | ||||
|                         - Ethernet0 | ||||
|                         - Ethernet1 | ||||
|                   lacp-config: | ||||
|                     description: LACP configuration settings for the MC-LAG group. | ||||
|                     type: object | ||||
|                     properties: | ||||
|                       lacp-enable: | ||||
|                         description: Enables or disables LACP for the MC-LAG group. | ||||
|                         type: boolean | ||||
|                         default: true | ||||
|                       lacp-role: | ||||
|                         description: Configures the LACP role as 'actor' or 'partner' | ||||
|                         type: string | ||||
|                         enum: | ||||
|                           - actor | ||||
|                           - partner | ||||
|                         default: actor | ||||
|                       lacp-timeout: | ||||
|                         description: Sets the LACP timeout as either 'short' or 'long'. | ||||
|                         type: string | ||||
|                         enum: | ||||
|                           - short | ||||
|                           - long | ||||
|                         default: long | ||||
|             system-priority: | ||||
|               description: Specifies the system priority used by the switch for LACP negotiations. | ||||
|               type: integer | ||||
|   | ||||
| @@ -49,6 +49,10 @@ items: | ||||
|           type: string | ||||
|           description: Provides a textual description of the remote port, typically describing the interface or its purpose. | ||||
|           example: "Ethernet Port on unit 1, port 2" | ||||
|         lldp-remote-sys-name: | ||||
|           type: string | ||||
|           description: Provides a textual description of the system name string (as defined by the sending device) | ||||
|           example: "Datacenter Switch-1" | ||||
|         lldp-remote-port-max-mtu: | ||||
|           type: string | ||||
|           description: Displays the maximum transmission unit (MTU) size that the remote port supports, indicating the largest packet size the port can handle. | ||||
| @@ -117,6 +121,19 @@ items: | ||||
|               type: string | ||||
|               description: Displays the PoE class of the remote device, indicating its power consumption classification. | ||||
|               enum: ["Class-1", "Class-2", "Class-3", "Class-4","Class-5", "Class-6", "Class-7", "Class-8"] | ||||
|             lldp-remote-port-power-priority: | ||||
|               type: string | ||||
|               description: Indicates the power priority level assigned to the PD. | ||||
|               enum: | ||||
|                 - low | ||||
|                 - high | ||||
|                 - critical | ||||
|             lldp-remote-port-pd-requested-power: | ||||
|               type: number | ||||
|               description: Power requested by the PD in watts (0.1W resolution possible). The values must be presented with real values like 25.5, 20.5 etc. | ||||
|             lldp-remote-port-pse-available-power: | ||||
|               type: number | ||||
|               description: Power that the PSE port is able to provide in watts (0.1W resolution). | ||||
|         lldp-remote-port-lag-info: | ||||
|           type: object | ||||
|           description: Provides information about the remote port’s involvement in Link Aggregation Groups (LAG), if applicable. | ||||
| @@ -129,4 +146,40 @@ items: | ||||
|               description: Shows whether Link Aggregation is enabled on the remote port. | ||||
|             lldp-remote-port-lag-port-id: | ||||
|               type: integer | ||||
|               description: Displays the identifier of the Link Aggregation Group (LAG) that the remote port belongs to. | ||||
|               description: Displays the identifier of the Link Aggregation Group (LAG) that the remote port belongs to. | ||||
|         lldp-remote-port-location: | ||||
|           type: object | ||||
|           description: Location information provided by LLDP-MED. | ||||
|           properties: | ||||
|             location-subtype: | ||||
|               type: string | ||||
|               description: Indicates the type of location information being conveyed. | ||||
|               enum: | ||||
|                 - coordinate | ||||
|                 - civic-address | ||||
|                 - elin | ||||
|             civic-addr: | ||||
|               type: array | ||||
|               description: Civic address information consisting of CA-Type and CA-Value pairs as per LLDP-MED. | ||||
|               items: | ||||
|                 type: object | ||||
|                 properties: | ||||
|                   ca-type: | ||||
|                     type: integer | ||||
|                     description: Civic Address Type identifier (e.g., 1 = Language, 3 = Country, 6 = A1 state/province, etc.) | ||||
|                   ca-value: | ||||
|                     type: string | ||||
|                     description: Civic Address Value corresponding to the type. | ||||
|             coordinates: | ||||
|               type: object | ||||
|               description: Location coordinates information. | ||||
|               properties: | ||||
|                 latitude: | ||||
|                   type: string | ||||
|                   description: Latitude in decimal degrees (e.g., +37.7749). | ||||
|                 longitude: | ||||
|                   type: string | ||||
|                   description: Longitude in decimal degrees (e.g., -122.4194). | ||||
|             elin: | ||||
|               type: string | ||||
|               description: Emergency Location Identification Number (ELIN) assigned to endpoint location | ||||
| @@ -777,24 +777,25 @@ | ||||
|                     "storm-control": { | ||||
|                         "description": "Storm Control configuration per storm type. Allows enabling or disabling traffic storm control for broadcast, multicast, and unknown unicast packets, with independent packet-per-second (pps) thresholds. A limit-pps value of 0 implies the control is disabled for that traffic type.", | ||||
|                         "type": "object", | ||||
|                         "properties": null, | ||||
|                         "broadcast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed broadcast packets per second. 0 disables broadcast storm control." | ||||
|                         }, | ||||
|                         "multicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed multicast packets per second. 0 disables multicast storm control." | ||||
|                         }, | ||||
|                         "unknown-unicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control." | ||||
|                         "properties": { | ||||
|                             "broadcast-pps": { | ||||
|                                 "type": "integer", | ||||
|                                 "minimum": 0, | ||||
|                                 "default": 0, | ||||
|                                 "description": "Maximum allowed broadcast packets per second. 0 disables broadcast storm control." | ||||
|                             }, | ||||
|                             "multicast-pps": { | ||||
|                                 "type": "integer", | ||||
|                                 "minimum": 0, | ||||
|                                 "default": 0, | ||||
|                                 "description": "Maximum allowed multicast packets per second. 0 disables multicast storm control." | ||||
|                             }, | ||||
|                             "unknown-unicast-pps": { | ||||
|                                 "type": "integer", | ||||
|                                 "minimum": 0, | ||||
|                                 "default": 0, | ||||
|                                 "description": "Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control." | ||||
|                             } | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
| @@ -1288,7 +1289,7 @@ | ||||
|                                         "description": "Configures the peer-link, which could be a physical port or a trunk group that connects the two MC-LAG peer switches.", | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "type": { | ||||
|                                             "link-type": { | ||||
|                                                 "description": "Defines the type of peer-link, either 'port' or 'trunk-group'", | ||||
|                                                 "type": "string", | ||||
|                                                 "enum": [ | ||||
| @@ -1297,8 +1298,16 @@ | ||||
|                                                 ], | ||||
|                                                 "default": "trunk-group" | ||||
|                                             }, | ||||
|                                             "value": { | ||||
|                                                 "description": "Specifies the port or trunk-group ID for the peer-link.", | ||||
|                                             "port-id": { | ||||
|                                                 "description": "Specifies the physical port name used as peer-link (only valid if type = port).", | ||||
|                                                 "type": "string", | ||||
|                                                 "examples": [ | ||||
|                                                     "Ethernet1", | ||||
|                                                     "Ethernet2" | ||||
|                                                 ] | ||||
|                                             }, | ||||
|                                             "trunk-id": { | ||||
|                                                 "description": "Specifies the trunk group ID used as peer-link (only valid if type = trunk-group).", | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 64 | ||||
| @@ -1306,53 +1315,56 @@ | ||||
|                                         } | ||||
|                                     }, | ||||
|                                     "mclag-group": { | ||||
|                                         "description": "Configures the MC-LAG group, which binds the interfaces into a multi-chassis LAG.", | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "group-id": { | ||||
|                                                 "description": "Defines the unique MC-LAG group identifier.", | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 128 | ||||
|                                             }, | ||||
|                                             "members": { | ||||
|                                                 "description": "List of interfaces that participate in the MC-LAG group.", | ||||
|                                                 "type": "array", | ||||
|                                                 "items": { | ||||
|                                                     "type": "string", | ||||
|                                                     "description": "Interface names that are part of the MC-LAG group.", | ||||
|                                                     "examples": [ | ||||
|                                                         "eth0", | ||||
|                                                         "eth1" | ||||
|                                                     ] | ||||
|                                                 } | ||||
|                                             }, | ||||
|                                             "lacp-config": { | ||||
|                                                 "description": "LACP configuration settings for the MC-LAG group.", | ||||
|                                                 "type": "object", | ||||
|                                                 "properties": { | ||||
|                                                     "lacp-enable": { | ||||
|                                                         "description": "Enables or disables LACP for the MC-LAG group.", | ||||
|                                                         "type": "boolean", | ||||
|                                                         "default": true | ||||
|                                                     }, | ||||
|                                                     "lacp-role": { | ||||
|                                                         "description": "Configures the LACP role as 'actor' or 'partner'", | ||||
|                                         "description": "Configures the MC-LAG group(s), which binds the interfaces into a multi-chassis LAG.", | ||||
|                                         "type": "array", | ||||
|                                         "items": { | ||||
|                                             "type": "object", | ||||
|                                             "properties": { | ||||
|                                                 "group-id": { | ||||
|                                                     "description": "Defines the unique MC-LAG group identifier.", | ||||
|                                                     "type": "integer", | ||||
|                                                     "minimum": 1, | ||||
|                                                     "maximum": 128 | ||||
|                                                 }, | ||||
|                                                 "members": { | ||||
|                                                     "description": "List of interfaces that participate in the MC-LAG group.", | ||||
|                                                     "type": "array", | ||||
|                                                     "items": { | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "actor", | ||||
|                                                             "partner" | ||||
|                                                         ], | ||||
|                                                         "default": "actor" | ||||
|                                                     }, | ||||
|                                                     "lacp-timeout": { | ||||
|                                                         "description": "Sets the LACP timeout as either 'short' or 'long'.", | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "short", | ||||
|                                                             "long" | ||||
|                                                         ], | ||||
|                                                         "default": "long" | ||||
|                                                         "description": "Interface names that are part of the MC-LAG group.", | ||||
|                                                         "examples": [ | ||||
|                                                             "Ethernet0", | ||||
|                                                             "Ethernet1" | ||||
|                                                         ] | ||||
|                                                     } | ||||
|                                                 }, | ||||
|                                                 "lacp-config": { | ||||
|                                                     "description": "LACP configuration settings for the MC-LAG group.", | ||||
|                                                     "type": "object", | ||||
|                                                     "properties": { | ||||
|                                                         "lacp-enable": { | ||||
|                                                             "description": "Enables or disables LACP for the MC-LAG group.", | ||||
|                                                             "type": "boolean", | ||||
|                                                             "default": true | ||||
|                                                         }, | ||||
|                                                         "lacp-role": { | ||||
|                                                             "description": "Configures the LACP role as 'actor' or 'partner'", | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "actor", | ||||
|                                                                 "partner" | ||||
|                                                             ], | ||||
|                                                             "default": "actor" | ||||
|                                                         }, | ||||
|                                                         "lacp-timeout": { | ||||
|                                                             "description": "Sets the LACP timeout as either 'short' or 'long'.", | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "short", | ||||
|                                                                 "long" | ||||
|                                                             ], | ||||
|                                                             "default": "long" | ||||
|                                                         } | ||||
|                                                     } | ||||
|                                                 } | ||||
|                                             } | ||||
|   | ||||
| @@ -687,21 +687,22 @@ | ||||
|                 }, | ||||
|                 "storm-control": { | ||||
|                     "type": "object", | ||||
|                     "properties": null, | ||||
|                     "broadcast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0 | ||||
|                     }, | ||||
|                     "multicast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0 | ||||
|                     }, | ||||
|                     "unknown-unicast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0 | ||||
|                     "properties": { | ||||
|                         "broadcast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0 | ||||
|                         }, | ||||
|                         "multicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0 | ||||
|                         }, | ||||
|                         "unknown-unicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0 | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
| @@ -1473,7 +1474,7 @@ | ||||
|                                     "peer-link": { | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "type": { | ||||
|                                             "link-type": { | ||||
|                                                 "type": "string", | ||||
|                                                 "enum": [ | ||||
|                                                     "port", | ||||
| @@ -1481,7 +1482,14 @@ | ||||
|                                                 ], | ||||
|                                                 "default": "trunk-group" | ||||
|                                             }, | ||||
|                                             "value": { | ||||
|                                             "port-id": { | ||||
|                                                 "type": "string", | ||||
|                                                 "examples": [ | ||||
|                                                     "Ethernet1", | ||||
|                                                     "Ethernet2" | ||||
|                                                 ] | ||||
|                                             }, | ||||
|                                             "trunk-id": { | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 64 | ||||
| @@ -1489,45 +1497,48 @@ | ||||
|                                         } | ||||
|                                     }, | ||||
|                                     "mclag-group": { | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "group-id": { | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 128 | ||||
|                                             }, | ||||
|                                             "members": { | ||||
|                                                 "type": "array", | ||||
|                                                 "items": { | ||||
|                                                     "type": "string", | ||||
|                                                     "examples": [ | ||||
|                                                         "eth0", | ||||
|                                                         "eth1" | ||||
|                                                     ] | ||||
|                                                 } | ||||
|                                             }, | ||||
|                                             "lacp-config": { | ||||
|                                                 "type": "object", | ||||
|                                                 "properties": { | ||||
|                                                     "lacp-enable": { | ||||
|                                                         "type": "boolean", | ||||
|                                                         "default": true | ||||
|                                                     }, | ||||
|                                                     "lacp-role": { | ||||
|                                         "type": "array", | ||||
|                                         "items": { | ||||
|                                             "type": "object", | ||||
|                                             "properties": { | ||||
|                                                 "group-id": { | ||||
|                                                     "type": "integer", | ||||
|                                                     "minimum": 1, | ||||
|                                                     "maximum": 128 | ||||
|                                                 }, | ||||
|                                                 "members": { | ||||
|                                                     "type": "array", | ||||
|                                                     "items": { | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "actor", | ||||
|                                                             "partner" | ||||
|                                                         ], | ||||
|                                                         "default": "actor" | ||||
|                                                     }, | ||||
|                                                     "lacp-timeout": { | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "short", | ||||
|                                                             "long" | ||||
|                                                         ], | ||||
|                                                         "default": "long" | ||||
|                                                         "examples": [ | ||||
|                                                             "Ethernet0", | ||||
|                                                             "Ethernet1" | ||||
|                                                         ] | ||||
|                                                     } | ||||
|                                                 }, | ||||
|                                                 "lacp-config": { | ||||
|                                                     "type": "object", | ||||
|                                                     "properties": { | ||||
|                                                         "lacp-enable": { | ||||
|                                                             "type": "boolean", | ||||
|                                                             "default": true | ||||
|                                                         }, | ||||
|                                                         "lacp-role": { | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "actor", | ||||
|                                                                 "partner" | ||||
|                                                             ], | ||||
|                                                             "default": "actor" | ||||
|                                                         }, | ||||
|                                                         "lacp-timeout": { | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "short", | ||||
|                                                                 "long" | ||||
|                                                             ], | ||||
|                                                             "default": "long" | ||||
|                                                         } | ||||
|                                                     } | ||||
|                                                 } | ||||
|                                             } | ||||
|   | ||||
| @@ -811,24 +811,25 @@ | ||||
|                 "storm-control": { | ||||
|                     "description": "Storm Control configuration per storm type. Allows enabling or disabling traffic storm control for broadcast, multicast, and unknown unicast packets, with independent packet-per-second (pps) thresholds. A limit-pps value of 0 implies the control is disabled for that traffic type.", | ||||
|                     "type": "object", | ||||
|                     "properties": null, | ||||
|                     "broadcast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0, | ||||
|                         "description": "Maximum allowed broadcast packets per second. 0 disables broadcast storm control." | ||||
|                     }, | ||||
|                     "multicast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0, | ||||
|                         "description": "Maximum allowed multicast packets per second. 0 disables multicast storm control." | ||||
|                     }, | ||||
|                     "unknown-unicast-pps": { | ||||
|                         "type": "integer", | ||||
|                         "minimum": 0, | ||||
|                         "default": 0, | ||||
|                         "description": "Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control." | ||||
|                     "properties": { | ||||
|                         "broadcast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed broadcast packets per second. 0 disables broadcast storm control." | ||||
|                         }, | ||||
|                         "multicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed multicast packets per second. 0 disables multicast storm control." | ||||
|                         }, | ||||
|                         "unknown-unicast-pps": { | ||||
|                             "type": "integer", | ||||
|                             "minimum": 0, | ||||
|                             "default": 0, | ||||
|                             "description": "Maximum allowed unknown unicast packets per second. 0 disables unknown unicast storm control." | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
| @@ -1746,7 +1747,7 @@ | ||||
|                                         "description": "Configures the peer-link, which could be a physical port or a trunk group that connects the two MC-LAG peer switches.", | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "type": { | ||||
|                                             "link-type": { | ||||
|                                                 "description": "Defines the type of peer-link, either 'port' or 'trunk-group'", | ||||
|                                                 "type": "string", | ||||
|                                                 "enum": [ | ||||
| @@ -1755,8 +1756,16 @@ | ||||
|                                                 ], | ||||
|                                                 "default": "trunk-group" | ||||
|                                             }, | ||||
|                                             "value": { | ||||
|                                                 "description": "Specifies the port or trunk-group ID for the peer-link.", | ||||
|                                             "port-id": { | ||||
|                                                 "description": "Specifies the physical port name used as peer-link (only valid if type = port).", | ||||
|                                                 "type": "string", | ||||
|                                                 "examples": [ | ||||
|                                                     "Ethernet1", | ||||
|                                                     "Ethernet2" | ||||
|                                                 ] | ||||
|                                             }, | ||||
|                                             "trunk-id": { | ||||
|                                                 "description": "Specifies the trunk group ID used as peer-link (only valid if type = trunk-group).", | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 64 | ||||
| @@ -1764,53 +1773,56 @@ | ||||
|                                         } | ||||
|                                     }, | ||||
|                                     "mclag-group": { | ||||
|                                         "description": "Configures the MC-LAG group, which binds the interfaces into a multi-chassis LAG.", | ||||
|                                         "type": "object", | ||||
|                                         "properties": { | ||||
|                                             "group-id": { | ||||
|                                                 "description": "Defines the unique MC-LAG group identifier.", | ||||
|                                                 "type": "integer", | ||||
|                                                 "minimum": 1, | ||||
|                                                 "maximum": 128 | ||||
|                                             }, | ||||
|                                             "members": { | ||||
|                                                 "description": "List of interfaces that participate in the MC-LAG group.", | ||||
|                                                 "type": "array", | ||||
|                                                 "items": { | ||||
|                                                     "type": "string", | ||||
|                                                     "description": "Interface names that are part of the MC-LAG group.", | ||||
|                                                     "examples": [ | ||||
|                                                         "eth0", | ||||
|                                                         "eth1" | ||||
|                                                     ] | ||||
|                                                 } | ||||
|                                             }, | ||||
|                                             "lacp-config": { | ||||
|                                                 "description": "LACP configuration settings for the MC-LAG group.", | ||||
|                                                 "type": "object", | ||||
|                                                 "properties": { | ||||
|                                                     "lacp-enable": { | ||||
|                                                         "description": "Enables or disables LACP for the MC-LAG group.", | ||||
|                                                         "type": "boolean", | ||||
|                                                         "default": true | ||||
|                                                     }, | ||||
|                                                     "lacp-role": { | ||||
|                                                         "description": "Configures the LACP role as 'actor' or 'partner'", | ||||
|                                         "description": "Configures the MC-LAG group(s), which binds the interfaces into a multi-chassis LAG.", | ||||
|                                         "type": "array", | ||||
|                                         "items": { | ||||
|                                             "type": "object", | ||||
|                                             "properties": { | ||||
|                                                 "group-id": { | ||||
|                                                     "description": "Defines the unique MC-LAG group identifier.", | ||||
|                                                     "type": "integer", | ||||
|                                                     "minimum": 1, | ||||
|                                                     "maximum": 128 | ||||
|                                                 }, | ||||
|                                                 "members": { | ||||
|                                                     "description": "List of interfaces that participate in the MC-LAG group.", | ||||
|                                                     "type": "array", | ||||
|                                                     "items": { | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "actor", | ||||
|                                                             "partner" | ||||
|                                                         ], | ||||
|                                                         "default": "actor" | ||||
|                                                     }, | ||||
|                                                     "lacp-timeout": { | ||||
|                                                         "description": "Sets the LACP timeout as either 'short' or 'long'.", | ||||
|                                                         "type": "string", | ||||
|                                                         "enum": [ | ||||
|                                                             "short", | ||||
|                                                             "long" | ||||
|                                                         ], | ||||
|                                                         "default": "long" | ||||
|                                                         "description": "Interface names that are part of the MC-LAG group.", | ||||
|                                                         "examples": [ | ||||
|                                                             "Ethernet0", | ||||
|                                                             "Ethernet1" | ||||
|                                                         ] | ||||
|                                                     } | ||||
|                                                 }, | ||||
|                                                 "lacp-config": { | ||||
|                                                     "description": "LACP configuration settings for the MC-LAG group.", | ||||
|                                                     "type": "object", | ||||
|                                                     "properties": { | ||||
|                                                         "lacp-enable": { | ||||
|                                                             "description": "Enables or disables LACP for the MC-LAG group.", | ||||
|                                                             "type": "boolean", | ||||
|                                                             "default": true | ||||
|                                                         }, | ||||
|                                                         "lacp-role": { | ||||
|                                                             "description": "Configures the LACP role as 'actor' or 'partner'", | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "actor", | ||||
|                                                                 "partner" | ||||
|                                                             ], | ||||
|                                                             "default": "actor" | ||||
|                                                         }, | ||||
|                                                         "lacp-timeout": { | ||||
|                                                             "description": "Sets the LACP timeout as either 'short' or 'long'.", | ||||
|                                                             "type": "string", | ||||
|                                                             "enum": [ | ||||
|                                                                 "short", | ||||
|                                                                 "long" | ||||
|                                                             ], | ||||
|                                                             "default": "long" | ||||
|                                                         } | ||||
|                                                     } | ||||
|                                                 } | ||||
|                                             } | ||||
|   | ||||
| @@ -909,6 +909,11 @@ | ||||
|                                 "description": "Provides a textual description of the remote port, typically describing the interface or its purpose.", | ||||
|                                 "example": "Ethernet Port on unit 1, port 2" | ||||
|                             }, | ||||
|                             "lldp-remote-sys-name": { | ||||
|                                 "type": "string", | ||||
|                                 "description": "Provides a textual description of the system name string (as defined by the sending device)", | ||||
|                                 "example": "Datacenter Switch-1" | ||||
|                             }, | ||||
|                             "lldp-remote-port-max-mtu": { | ||||
|                                 "type": "string", | ||||
|                                 "description": "Displays the maximum transmission unit (MTU) size that the remote port supports, indicating the largest packet size the port can handle." | ||||
| @@ -1014,6 +1019,23 @@ | ||||
|                                             "Class-7", | ||||
|                                             "Class-8" | ||||
|                                         ] | ||||
|                                     }, | ||||
|                                     "lldp-remote-port-power-priority": { | ||||
|                                         "type": "string", | ||||
|                                         "description": "Indicates the power priority level assigned to the PD.", | ||||
|                                         "enum": [ | ||||
|                                             "low", | ||||
|                                             "high", | ||||
|                                             "critical" | ||||
|                                         ] | ||||
|                                     }, | ||||
|                                     "lldp-remote-port-pd-requested-power": { | ||||
|                                         "type": "number", | ||||
|                                         "description": "Power requested by the PD in watts (0.1W resolution possible). The values must be presented with real values like 25.5, 20.5 etc." | ||||
|                                     }, | ||||
|                                     "lldp-remote-port-pse-available-power": { | ||||
|                                         "type": "number", | ||||
|                                         "description": "Power that the PSE port is able to provide in watts (0.1W resolution)." | ||||
|                                     } | ||||
|                                 } | ||||
|                             }, | ||||
| @@ -1034,6 +1056,56 @@ | ||||
|                                         "description": "Displays the identifier of the Link Aggregation Group (LAG) that the remote port belongs to." | ||||
|                                     } | ||||
|                                 } | ||||
|                             }, | ||||
|                             "lldp-remote-port-location": { | ||||
|                                 "type": "object", | ||||
|                                 "description": "Location information provided by LLDP-MED.", | ||||
|                                 "properties": { | ||||
|                                     "location-subtype": { | ||||
|                                         "type": "string", | ||||
|                                         "description": "Indicates the type of location information being conveyed.", | ||||
|                                         "enum": [ | ||||
|                                             "coordinate", | ||||
|                                             "civic-address", | ||||
|                                             "elin" | ||||
|                                         ] | ||||
|                                     }, | ||||
|                                     "civic-addr": { | ||||
|                                         "type": "array", | ||||
|                                         "description": "Civic address information consisting of CA-Type and CA-Value pairs as per LLDP-MED.", | ||||
|                                         "items": { | ||||
|                                             "type": "object", | ||||
|                                             "properties": { | ||||
|                                                 "ca-type": { | ||||
|                                                     "type": "integer", | ||||
|                                                     "description": "Civic Address Type identifier (e.g., 1 = Language, 3 = Country, 6 = A1 state/province, etc.)" | ||||
|                                                 }, | ||||
|                                                 "ca-value": { | ||||
|                                                     "type": "string", | ||||
|                                                     "description": "Civic Address Value corresponding to the type." | ||||
|                                                 } | ||||
|                                             } | ||||
|                                         } | ||||
|                                     }, | ||||
|                                     "coordinates": { | ||||
|                                         "type": "object", | ||||
|                                         "description": "Location coordinates information.", | ||||
|                                         "properties": { | ||||
|                                             "latitude": { | ||||
|                                                 "type": "string", | ||||
|                                                 "description": "Latitude in decimal degrees (e.g., +37.7749)." | ||||
|                                             }, | ||||
|                                             "longitude": { | ||||
|                                                 "type": "string", | ||||
|                                                 "description": "Longitude in decimal degrees (e.g., -122.4194)." | ||||
|                                             } | ||||
|                                         } | ||||
|                                     }, | ||||
|                                     "elin": { | ||||
|                                         "type": "string", | ||||
|                                         "description": "Emergency Location Identification Number (ELIN) assigned to endpoint location" | ||||
|                                     } | ||||
|                                 } | ||||
|                             } | ||||
|                         } | ||||
|                     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user