mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-29 01:02:20 +00:00
Merge branch 'main' into ols-688-bpdu-guard
This commit is contained in:
@@ -281,6 +281,7 @@ properties:
|
|||||||
- MAC-ACL
|
- MAC-ACL
|
||||||
- IP-ACL
|
- IP-ACL
|
||||||
- Guest-VLAN
|
- Guest-VLAN
|
||||||
|
- Storm-Control
|
||||||
# Services
|
# Services
|
||||||
- Service-SSH
|
- Service-SSH
|
||||||
- Service-RSSH
|
- Service-RSSH
|
||||||
|
|||||||
@@ -516,4 +516,24 @@ properties:
|
|||||||
description: When true, the port behaves as an STP Edge Port. When false, the port
|
description: When true, the port behaves as an STP Edge Port. When false, the port
|
||||||
participates fully in STP and is treated as a normal switch port.
|
participates fully in STP and is treated as a normal switch port.
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
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:
|
||||||
|
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.
|
||||||
@@ -270,4 +270,17 @@ properties:
|
|||||||
enum:
|
enum:
|
||||||
- none
|
- none
|
||||||
- block
|
- block
|
||||||
- shutdown
|
- shutdown
|
||||||
|
storm-status:
|
||||||
|
description: Runtime status of Storm Control feature on the port for each storm type.
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
broadcast:
|
||||||
|
type: boolean
|
||||||
|
description: Runtime status of Broadcast Storm Control on the port. Return `true`if Storm condition is detected.
|
||||||
|
multicast:
|
||||||
|
type: boolean
|
||||||
|
description: Runtime status of Multicast Storm Control on the port. Return `true`if Storm condition is detected.
|
||||||
|
unknown-unicast:
|
||||||
|
type: boolean
|
||||||
|
description: Runtime status of Unknown Unicast Storm Control on the port. Return `true`if Storm condition is detected.
|
||||||
@@ -343,6 +343,7 @@
|
|||||||
"MAC-ACL",
|
"MAC-ACL",
|
||||||
"IP-ACL",
|
"IP-ACL",
|
||||||
"Guest-VLAN",
|
"Guest-VLAN",
|
||||||
|
"Storm-Control",
|
||||||
"Service-SSH",
|
"Service-SSH",
|
||||||
"Service-RSSH",
|
"Service-RSSH",
|
||||||
"Service-Telnet",
|
"Service-Telnet",
|
||||||
|
|||||||
@@ -773,6 +773,28 @@
|
|||||||
"description": "When true, the port behaves as an STP Edge Port. When false, the port participates fully in STP and is treated as a normal switch port.",
|
"description": "When true, the port behaves as an STP Edge Port. When false, the port participates fully in STP and is treated as a normal switch port.",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
|
"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."
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -684,6 +684,24 @@
|
|||||||
"edge-port": {
|
"edge-port": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
|
"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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -807,6 +807,28 @@
|
|||||||
"description": "When true, the port behaves as an STP Edge Port. When false, the port participates fully in STP and is treated as a normal switch port.",
|
"description": "When true, the port behaves as an STP Edge Port. When false, the port participates fully in STP and is treated as a normal switch port.",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false
|
"default": false
|
||||||
|
"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."
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1359,6 +1359,24 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"storm-status": {
|
||||||
|
"description": "Runtime status of Storm Control feature on the port for each storm type.",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"broadcast": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Runtime status of Broadcast Storm Control on the port. Return `true`if Storm condition is detected."
|
||||||
|
},
|
||||||
|
"multicast": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Runtime status of Multicast Storm Control on the port. Return `true`if Storm condition is detected."
|
||||||
|
},
|
||||||
|
"unknown-unicast": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Runtime status of Unknown Unicast Storm Control on the port. Return `true`if Storm condition is detected."
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user