跳转到内容
Ask AI

MAC

此内容尚不支持你的语言。

Forwarding Data Base(FDB).

URLGETPOSTPATCHPUTDELETE
/rest/v1/running/fdbYNYNN
/rest/v1/running/fdb/fdb-entry/{vlan-id}/{mac-address}YYYNY
/rest/v1/rpc/show-mac-addressNYNNN
/rest/v1/rpc/show-mac-limitNYNNN
/rest/v1/rpc/clear-mac-addressNYNNN
POST HTTPS://{switch IP}/rest/v1/rpc/show-mac-address
{
"interface-name": "Ethernet1"
}

response:

{
"aging-time": 1800,
"mac-address-info": [
{
"mac-address": "60:eb:5a:4c:30:db",
"vlan-id": 10,
"type": "dynamic",
"port": "Ethernet1",
"index": 1
}
]
}
POST HTTPS://{switch IP}/rest/v1/rpc/show-mac-limit

response:

{
"port-mac-limit": [
{
"port": "Ethernet1",
"mac-limit": 30
}
],
"vlanid-mac-limit": [
{
"vlanid": 10,
"mac-limit": 100
}
]
}
POST HTTPS://{switch IP}/rest/v1/rpc/clear-mac-address
{
"vlan-id": "1005"
}
PATCH HTTPS://{switch IP}/rest/v1/running/fdb
{
"fdb-entry": [
{
"mac-address": "cc:cc:cc:cc:cc:cc",
"vlan-id": "1002",
"type": "static",
"port": "Lag2"
}]
}
POST HTTPS://{switch IP}/rest/v1/running/fdb/fdb-entry
{
"vlan-id": "1005",
"mac-address": "00:01:02:03:04:05",
"peer": "1.1.1.1",
"vni": "1",
"type": "static"
}
DELETE HTTPS://{switch IP}/rest/v1/running/fdb/fdb-entry/1000/12:34:56:78:9a:bc

Tree Diagrams

+--rw fdb
+--rw fdb-entry* [vlan-id mac-address]
| +--rw mac-address
| +--rw vlan-id
| +--ro type?
| +--rw (outer-if-type)
| +--:(port)
| | +--rw port?
| +--:(blackhole)
| | +--rw blackhole?
| +--:(vxlan-tunnel)
| +--rw vni?
| +--rw peer?

Table of Properties

NameRequiredType/RangeDescription
fdbMPath-only node, has no configurable value.
fdb-entryM(sub-property of fdb) Path-only node, has no configurable value.
mac-addressMA:B:C:D:E:F(sub-property of fdb-entry) MAC address for the fdb entry
vlan-idM1..4094(sub-property of fdb-entry) VLAN ID for the fdb entry
typeRO”static""dynamic”(sub-property of fdb-entry) The type of fdb. Default value: “static”
portOEthernet name.Lag1..9999(sub-property of fdb-entry) Mutually exclusive with:
- blackhole
- vni
- peer
The name of the port
blackholeO”true""false”(sub-property of fdb-entry) Mutually exclusive with:
- port
- vni
- peer
Configure blackhole mac address
vniO1..16777215(sub-property of fdb-entry) Mutually exclusive with:
- port
- blackhole VXLAN Network Identifier
peerOA.B.C.D(sub-property of fdb-entry) Mutually exclusive with:
- port
- blackhole
Peer VTEP IP
aging-timeO30..7200
“never”
(sub-property of fdb) Mac aging time, default is 1800 seconds. Default value: 1800

Tree Diagrams

+--rw fdb
+--rw aging-time?

Table of Properties

NameRequiredType/RangeDescription
fdbMPath-only node, has no configurable value.
aging-timeO30..7200 “never”(sub-property of fdb) Mac aging time, default is 1800 seconds.Default value: 1800

Tree Diagrams

+---x show-mac-address
| +---w input
| | +---w interface-name?
| +--ro output
| +--ro mac-address-info* []
| | +--ro mac-address?
| | +--ro vlan-id?
| | +--ro type?
| | +--ro port?
| | +--ro index?
| +--ro aging-time?

Table of Properties

NameRequiredType/RangeDescription
show-mac-addressMPath-only node, has no configurable value.
interface-typeO”ethernet""link-aggregation""all”(sub-property of input) The type of interface to show MAC address for, or “all” for all types. Default value: “all”
interface-nameOEthernet name. Lag1..9999(sub-property of input)
mac-address-infoRO(sub-property of output) Path-only node, has no configurable value. A table that show information of mac address
mac-addressROA:B:C:D:E:F(sub-property of mac-address-info) MAC address for the fdb entry
vlan-idRO1..4094(sub-property of mac-address-info) VLAN ID for the fdb entry
typeRO”static""dynamic”(sub-property of mac-address-info) The type of fdb
portROEthernet name. Lag1..9999 “blackhole”(sub-property of mac-address-info) The name of the port
indexRO0..4294967295(sub-property of mac-address-info)
aging-timeRO30..7200 “never”(sub-property of output) Mac aging time, default is 1800 seconds. Default value: 1800

Tree Diagrams

+---x clear-mac-address
| +---w input
| +---w interface-name?
| +---w vlan-id?

Table of Properties

NameRequiredType/RangeDescription
clear-mac-addressMPath-only node, has no configurable value. Clear MAC address table entries based on specified criteria.
interface-nameOEthernet name.Lag1..9999(sub-property of input) Name of the Ethernet or link-aggregation interface.
vlan-idO1..4094(sub-property of input)

Tree Diagrams

+---x show-mac-limit
+--ro output
+--ro port-mac-limit* []
| +--ro port?
| +--ro mac-limit?
+--ro vlanid-mac-limit* []
+--ro vlanid?
+--ro mac-limit?

Table of Properties

NameRequiredType/RangeDescription
show-mac-limitMPath-only node, has no configurable value.
port-mac-limitRO(sub-property of output) Path-only node, has no configurable value. A table that show information of mac limit
portROEthernet name(sub-property of port-mac-limit) The name of the port
mac-limitRO1..131072(sub-property of port-mac-limit)
vlanid-mac-limitRO(sub-property of output) Path-only node, has no configurable value. A table that show information of mac limit
vlanidRO1..4094(sub-property of vlanid-mac-limit) The name of the vlan
mac-limitRO1..131072(sub-property of vlanid-mac-limit)