Merge branch 'master' into suom1/huber-suhner

This commit is contained in:
Markus Viitamäki 2024-11-13 10:30:31 +01:00 committed by GitHub
commit 18fd6b09c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
609 changed files with 22786 additions and 529 deletions

View File

@ -0,0 +1,31 @@
{
"name": "netbox_devicetype-library",
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
"remoteEnv": {
"HISTSIZE": "10000",
"HISTFILESIZE": "20000"
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip install -r requirements.txt",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"DavidAnson.vscode-markdownlint",
"EditorConfig.EditorConfig",
"Percy.vscode-pydata-viewer",
"Tyriar.sort-lines",
"charliermarsh.ruff",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-vscode-remote.vscode-remote-extensionpack",
"redhat.vscode-yaml"
]
}
}
}

View File

@ -2,24 +2,29 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
directory: /
schedule:
interval: monthly
time: '02:00'
timezone: America/New_York
labels:
- dependencies
target-branch: master
assignees:
- "danner26"
- package-ecosystem: "github-actions"
directory: "/"
- danner26
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
time: '02:00'
timezone: America/New_York
labels:
- dependencies
target-branch: master
assignees:
- "danner26"
- danner26
- package-ecosystem: devcontainers
directory: /
schedule:
interval: monthly
labels:
- dependencies
target-branch: master
assignees:
- danner26

View File

@ -3,7 +3,7 @@
name: Close stale PRs
on:
schedule:
- cron: '0 4 * * *'
- cron: 0 4 * * *
jobs:
stale:
runs-on: ubuntu-latest

View File

@ -2,7 +2,7 @@
name: Gather New NetBox Generated Schema JSON
on:
schedule:
- cron: '0 */12 * * *'
- cron: 0 */12 * * *
jobs:
schema-update:
runs-on: ubuntu-latest
@ -48,9 +48,9 @@ jobs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: "Regenerate master slug list after successful PR merge"
committer: "NetBox-Bot <info@netboxlabs.com>"
author: "NetBox-Bot <info@netboxlabs.com>"
commit-message: Regenerate master slug list after successful PR merge
committer: NetBox-Bot <info@netboxlabs.com>
author: NetBox-Bot <info@netboxlabs.com>
branch: ${{ steps.netbox-release.outputs.release }}
delete-branch: true
base: master

View File

@ -99,7 +99,7 @@ jobs:
id: pickle-change
uses: tj-actions/changed-files@v45
with:
files: 'tests/known-slugs.pickle'
files: tests/known-slugs.pickle
- name: Add PR Comment if pickle file is modified
uses: mshick/add-pr-comment@v2
if: steps.pickle-change.outputs.any_changed == 'true'

4
.markdownlint.yaml Normal file
View File

@ -0,0 +1,4 @@
---
default: true
MD013: false

View File

@ -1,8 +1,7 @@
---
files: ^(device-types|module-types)/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
@ -19,6 +18,10 @@ repos:
- id: yamllint
name: Lint YAML files
args: [--format, parsable, --strict]
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.14.0
hooks:
- id: markdownlint-cli2
- repo: local
hooks:
- id: pytest

148
README.md
View File

@ -27,24 +27,25 @@ Each definition **must** include at minimum the following fields:
- Type: String
- Pattern: `"^[-a-zA-Z0-9_]+$"`. Must match the following characters: `-`, `_`, Uppercase or Lowercase `a` to `z`, Numbers `0` to `9`.
>:test_tube: **Valid Example**:
>```
>manufacturer: Dell
>model: PowerEdge R6515
>slug: dell-poweredge-r6515
>```
:test_tube: Example:
```yaml
manufacturer: Dell
model: PowerEdge R6515
slug: dell-poweredge-r6515
```
The following fields may **optionally** be declared:
- `part_number`: An alternative representation of the model number (e.g. a SKU). (**Default: None**)
- Type: String
> :test_tube: **Example**: `part_number: D109-C3`
- :test_tube: Example: `part_number: D109-C3`
- `u_height`: The height of the device type in rack units. Increments of 0.5U are supported. (**Default: 1**)
- Type: number (minimum of `0`, multiple of `0.5`)
> :test_tube: **Example**: `u_height: 12.5`
- :test_tube: Example: `u_height: 12.5`
- `is_full_depth`: A boolean which indicates whether the device type consumes both the front and rear rack faces. (**Default: true**)
- Type: Boolean
> :test_tube: **Example**: `is_full_depth: false`
- :test_tube: Example: `is_full_depth: false`
- `airflow`: A declaration of the airflow pattern for the device. (**Default: None**)
- Type: String
- Options:
@ -54,27 +55,30 @@ The following fields may **optionally** be declared:
- `right-to-left`
- `side-to-rear`
- `passive`
> :test_tube: **Example**: `airflow: side-to-rear`
- :test_tube: Example: `airflow: side-to-rear`
- `front_image`: Indicates that this device has a front elevation image within the [elevation-images](elevation-images/) folder. (**Default: None**)
- NOTE: The elevation images folder requires the same folder name as this device. The file name must also adhere to <VALUE_IN_SLUG>.front.<acceptable_format>
- Type: Boolean
> :test_tube: **Example**: `front_image: True`
- :test_tube: Example: `front_image: True`
- `rear_image`: Indicates that this device has a rear elevation image within the [elevation-images](elevation-images/) folder. (**Default: None**)
- NOTE: The elevation images folder requires the same folder name as this device. The file name must also adhere to <VALUE_IN_SLUG>.rear.<acceptable_format>
- Type: Boolean
> :test_tube: **Example**: `rear_image: True`
- :test_tube: Example: `rear_image: True`
- `subdevice_role`: Indicates that this is a `parent` or `child` device. (**Default: None**)
- Type: String
- Options:
- `parent`
- `child`
> :test_tube: **Example**: `subdevice_role: parent`
- :test_tube: Example: `subdevice_role: parent`
- `comments`: A string field which allows for comments to be added to the device. (**Default: None**)
- Type: String
> :test_tube: **Example**: `comments: This is a comment that will appear on all NetBox devices of this type`
- :test_tube: Example: `comments: This is a comment that will appear on all NetBox devices of this type`
- `is_powered`: A boolean which indicates whether the device type does not take power. This is mainly used as a workaround for validation testing on non-devices (i.e. rackmount kits for mounting desktop devices) (**Default: True**)
- Type: Boolean
- :test_tube: Example: `is_powered: false`
- `weight`: A number representing the numeric weight value. Must be a multiple of 0.01 (2 decimal places). (**Default: None**)
- Type: Number
- Value: must be a multiple of 0.01
- Type: Number
- Value: must be a multiple of 0.01
- `weight_unit`: A string defining the unit of measurement. It must be one of the supported values. (**Default: None**)
- Type: String
- Value: Enumerated Options
@ -82,14 +86,12 @@ The following fields may **optionally** be declared:
- g
- lb
- oz
>:test_tube: **Example**:
>```
>weight: 12.21
>weight_unit: lb
>```
- `is_powered`: A boolean which indicates whether the device type does not take power. This is mainly used as a workaround for validation testing on non-devices (i.e. rackmount kits for mounting desktop devices) (**Default: True**)
- Type: Boolean
> :test_tube: **Example**: `is_powered: false`
- :test_tube: Example:
```yaml
weight: 12.21
weight_unit: lb
```
For further detail on these attributes and those listed below, please reference the
[schema definitions](schema/) and the [Component Definitions](#component-definitions) below.
@ -99,36 +101,45 @@ For further detail on these attributes and those listed below, please reference
Valid component types are listed below. Each type of component must declare a list of the individual component templates
to be added.
- [`console-ports`](#console-ports "Availible in NetBox 2 and later")
- [`console-server-ports`](#console-server-ports "Availible in NetBox 2.2 and later")
- [`power-ports`](#power-ports "Availible in NetBox 1.7 and later")
- [`power-outlets`](#power-outlets "Availible in NetBox 2 and later")
- [`interfaces`](#interfaces "Availible in all versions of NetBox")
- [`front-ports`](#front-ports "Availible in NetBox 2.5 and later")
- [`rear-ports`](#rear-ports "Availible in NetBox 2.5 and later")
- [`module-bays`](#module-bays "Availible in NetBox 3.2 and later")
- [`device-bays`](#device-bays "Availible in all versions of NetBox")
- [`inventory-items`](#inventory-items "Availible in NetBox 3.2 and later")
- [console-ports](#console-ports "Availible in NetBox 2 and later")
- [console-server-ports](#console-server-ports "Availible in NetBox 2.2 and later")
- [power-ports](#power-ports "Availible in NetBox 1.7 and later")
- [power-outlets](#power-outlets "Availible in NetBox 2 and later")
- [interfaces](#interfaces "Availible in all versions of NetBox")
- [front-ports](#front-ports "Availible in NetBox 2.5 and later")
- [rear-ports](#rear-ports "Availible in NetBox 2.5 and later")
- [module-bays](#module-bays "Availible in NetBox 3.2 and later")
- [device-bays](#device-bays "Availible in all versions of NetBox")
- [inventory-items](#inventory-items "Availible in NetBox 3.2 and later")
The available fields for each type of component are listed below.
#### Console Ports ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/consoleport/))
> A console port provides connectivity to the physical console of a device. These are typically used for temporary access by someone who is physically near the device, or for remote out-of-band access provided via a networked console server.
#### Console Ports
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/consoleport/)**
A console port provides connectivity to the physical console of a device. These are typically used for temporary access by someone who is physically near the device, or for remote out-of-band access provided via a networked console server.
- `name`: Name
- `label`: Label
- `type`: Port type slug (Array)
- `poe`: Does this port access/provide POE? (Boolean)
#### Console Server Ports ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/consoleserverport/))
> A console server is a device which provides remote access to the local consoles of connected devices. They are typically used to provide remote out-of-band access to network devices, and generally connect to console ports.
#### Console Server Ports
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/consoleserverport/)**
A console server is a device which provides remote access to the local consoles of connected devices. They are typically used to provide remote out-of-band access to network devices, and generally connect to console ports.
- `name`: Name
- `label`: Label
- `type`: Port type slug (Array)
#### Power Ports ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/powerport/))
> A power port is a device component which draws power from some external source (e.g. an upstream power outlet), and generally represents a power supply internal to a device.
#### Power Ports
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/powerport/)**
A power port is a device component which draws power from some external source (e.g. an upstream power outlet), and generally represents a power supply internal to a device.
- `name`: Name
- `label`: Label
@ -136,8 +147,11 @@ The available fields for each type of component are listed below.
- `maximum_draw`: The port's maximum power draw, in watts (optional)
- `allocated_draw`: The port's allocated power draw, in watts (optional)
#### Power Outlets ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/poweroutlet/))
> Power outlets represent the outlets on a power distribution unit (PDU) or other device that supplies power to dependent devices. Each power port may be assigned a physical type, and may be associated with a specific feed leg (where three-phase power is used) and/or a specific upstream power port. This association can be used to model the distribution of power within a device.
#### Power Outlets
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/poweroutlet/)**
Power outlets represent the outlets on a power distribution unit (PDU) or other device that supplies power to dependent devices. Each power port may be assigned a physical type, and may be associated with a specific feed leg (where three-phase power is used) and/or a specific upstream power port. This association can be used to model the distribution of power within a device.
- `name`: Name
- `label`: Label
@ -145,16 +159,22 @@ The available fields for each type of component are listed below.
- `power_port`: The name of the power port on the device which powers this outlet (optional)
- `feed_leg`: The phase (leg) of power to which this outlet is mapped; A, B, or C (optional)
#### Interfaces ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/interface/))
> Interfaces in NetBox represent network interfaces used to exchange data with connected devices. On modern networks, these are most commonly Ethernet, but other types are supported as well. IP addresses and VLANs can be assigned to interfaces.
#### Interfaces
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/interface/)**
Interfaces in NetBox represent network interfaces used to exchange data with connected devices. On modern networks, these are most commonly Ethernet, but other types are supported as well. IP addresses and VLANs can be assigned to interfaces.
- `name`: Name
- `label`: Label
- `type`: Interface type slug (Array)
- `mgmt_only`: A boolean which indicates whether this interface is used for management purposes only (default: false)
#### Front Ports ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/frontport/))
> Front ports are pass-through ports which represent physical cable connections that comprise part of a longer path. For example, the ports on the front face of a UTP patch panel would be modeled in NetBox as front ports. Each port is assigned a physical type, and must be mapped to a specific rear port on the same device. A single rear port may be mapped to multiple front ports, using numeric positions to annotate the specific alignment of each.
#### Front Ports
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/frontport/)**
Front ports are pass-through ports which represent physical cable connections that comprise part of a longer path. For example, the ports on the front face of a UTP patch panel would be modeled in NetBox as front ports. Each port is assigned a physical type, and must be mapped to a specific rear port on the same device. A single rear port may be mapped to multiple front ports, using numeric positions to annotate the specific alignment of each.
- `name`: Name
- `label`: Label
@ -162,8 +182,11 @@ The available fields for each type of component are listed below.
- `rear_port`: The name of the rear port on this device to which the front port maps
- `rear_port_position`: The corresponding position on the mapped rear port (default: 1)
#### Rear Ports ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/rearport/))
> Like front ports, rear ports are pass-through ports which represent the continuation of a path from one cable to the next. Each rear port is defined with its physical type and a number of positions: Rear ports with more than one position can be mapped to multiple front ports. This can be useful for modeling instances where multiple paths share a common cable (for example, six discrete two-strand fiber connections sharing a 12-strand MPO cable).
#### Rear Ports
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/rearport/)**
Like front ports, rear ports are pass-through ports which represent the continuation of a path from one cable to the next. Each rear port is defined with its physical type and a number of positions: Rear ports with more than one position can be mapped to multiple front ports. This can be useful for modeling instances where multiple paths share a common cable (for example, six discrete two-strand fiber connections sharing a 12-strand MPO cable).
- `name`: Name
- `label`: Label
@ -171,25 +194,34 @@ The available fields for each type of component are listed below.
- `positions`: The number of front ports that can map to this rear port (default: 1)
- `poe`: Does this port access/provide POE? (Boolean)
#### Module Bays ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/modulebay/))
> Module bays represent a space or slot within a device in which a field-replaceable module may be installed. A common example is that of a chassis-based switch such as the Cisco Nexus 9000 or Juniper EX9200. Modules in turn hold additional components that become available to the parent device.
#### Module Bays
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/modulebay/)**
Module bays represent a space or slot within a device in which a field-replaceable module may be installed. A common example is that of a chassis-based switch such as the Cisco Nexus 9000 or Juniper EX9200. Modules in turn hold additional components that become available to the parent device.
- `name`: Name
- `label`: Label
- `position`: The alphanumeric position in which this module bay is situated within the parent device. When creating module components, the string `{module}` in the component name will be replaced with the module bay's `position`. See the [NetBox Documentation](https://docs.netbox.dev/en/stable/models/dcim/moduletype/#automatic-component-renaming) for more details.
#### Device Bays ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/devicebay/))
>Device bays represent a space or slot within a parent device in which a child device may be installed. For example, a 2U parent chassis might house four individual blade servers. The chassis would appear in the rack elevation as a 2U device with four device bays, and each server within it would be defined as a 0U device installed in one of the device bays. Child devices do not appear within rack elevations or count as consuming rack units.
>
> Child devices are first-class Devices in their own right: That is, they are fully independent managed entities which don't share any control plane with the parent. Just like normal devices, child devices have their own platform (OS), role, tags, and components. LAG interfaces may not group interfaces belonging to different child devices.
#### Device Bays
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/devicebay/)**
Device bays represent a space or slot within a parent device in which a child device may be installed. For example, a 2U parent chassis might house four individual blade servers. The chassis would appear in the rack elevation as a 2U device with four device bays, and each server within it would be defined as a 0U device installed in one of the device bays. Child devices do not appear within rack elevations or count as consuming rack units.
Child devices are first-class Devices in their own right: That is, they are fully independent managed entities which don't share any control plane with the parent. Just like normal devices, child devices have their own platform (OS), role, tags, and components. LAG interfaces may not group interfaces belonging to different child devices.
- `name`: Name
- `label`: Label
#### Inventory Items ([Documentation](https://docs.netbox.dev/en/stable/models/dcim/inventoryitem/))
> Inventory items represent hardware components installed within a device, such as a power supply or CPU or line card. They are intended to be used primarily for inventory purposes.
>
> Inventory items are hierarchical in nature, such that any individual item may be designated as the parent for other items. For example, an inventory item might be created to represent a line card which houses several SFP optics, each of which exists as a child item within the device. An inventory item may also be associated with a specific component within the same device. For example, you may wish to associate a transceiver with an interface.
#### Inventory Items
**[Documentation](https://docs.netbox.dev/en/stable/models/dcim/inventoryitem/)**
Inventory items represent hardware components installed within a device, such as a power supply or CPU or line card. They are intended to be used primarily for inventory purposes.
Inventory items are hierarchical in nature, such that any individual item may be designated as the parent for other items. For example, an inventory item might be created to represent a line card which houses several SFP optics, each of which exists as a child item within the device. An inventory item may also be associated with a specific component within the same device. For example, you may wish to associate a transceiver with an interface.
- `name`: Name
- `label`: Label

View File

@ -4,6 +4,8 @@ model: U-Series Housing 1RU, 5 Cassettes
slug: afl-fxucxxbxxx-01bh
part_number: FXUCXXBXXX-01BH
u_height: 1
weight: 1.6
weight_unit: kg
is_full_depth: false
is_powered: false
module-bays:

View File

@ -4,6 +4,8 @@ model: U-Series Housing 2RU, 12 Cassettes
slug: afl-fxucxxbxxx-02bh
part_number: FXUCXXBXXX-02BH
u_height: 2
weight: 2.6
weight_unit: kg
is_full_depth: false
is_powered: false
module-bays:

View File

@ -1,115 +0,0 @@
---
manufacturer: APC
model: AP8941
slug: apc-ap8941
part_number: AP8941
u_height: 0
is_full_depth: false
comments: Rack PDU 2G, Switched, ZeroU, 30A, 200/208V, (21) C13 & (3) C19
console-ports:
- name: Serial
type: rj-12
power-ports:
- name: Power Port 1
type: nema-l6-30p
power-outlets:
- name: Power Outlet 1
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 2
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 3
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 4
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 5
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 6
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 7
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 8
type: iec-60320-c19
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 9
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 10
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 11
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 12
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 13
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 14
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 15
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 16
type: iec-60320-c19
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 17
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 18
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 19
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 20
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 21
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 22
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 23
type: iec-60320-c13
power_port: Power Port 1
feed_leg: A
- name: Power Outlet 24
type: iec-60320-c19
power_port: Power Port 1
feed_leg: A
interfaces:
- name: Network
type: 100base-tx
mgmt_only: true

View File

@ -0,0 +1,41 @@
---
manufacturer: APC
model: SMT1500RMI2UC
slug: apc-smt1500rmi2uc
part_number: SMT1500RMI2UC
u_height: 2
is_full_depth: true
weight: 38.24
weight_unit: kg
airflow: front-to-rear
front_image: true
rear_image: true
comments: APC Smart-UPS, Line Interactive, 1500VA, 2HE, 230V, 4 IEC C13-Stecker, SmartConnect Port+SmartSlot, AVR, LCD
console-ports:
- name: Serial
type: rj-45
- name: USB
type: usb-b
power-ports:
- name: Source
type: iec-60320-c14
maximum_draw: 3600
power-outlets:
- name: Group 1 Outlet 1
type: iec-60320-c13
power_port: Source
- name: Group 1 Outlet 2
type: iec-60320-c13
power_port: Source
- name: Group 2 Outlet 1
type: iec-60320-c13
power_port: Source
- name: Group 2 Outlet 2
type: iec-60320-c13
power_port: Source
interfaces:
- name: Ethernet
type: 1000base-t
mgmt_only: true
module-bays:
- name: SmartSlot

View File

@ -6,6 +6,8 @@ part_number: SMT3000RMI2UC
u_height: 2
is_full_depth: true
airflow: front-to-rear
front_image: true
rear_image: true
comments: APC Smart-UPS, Line Interactive, 3000VA, Rackmount 2U, 230V, 6x IEC C13 outlets, SmartSlot, AVR, LCD
console-ports:
- name: Serial

View File

@ -0,0 +1,25 @@
---
manufacturer: AVM
model: FRITZ!Box 7510
slug: avm-fritzbox-7510
part_number: '20002839'
u_height: 0
is_full_depth: false
airflow: passive
comments: '[AVM FRITZ!Box 7510 Datasheet](https://avm.de/produkte/fritzbox/fritzbox-7510/technische-daten/)'
power-ports:
- name: Power
type: dc-terminal
maximum_draw: 30
interfaces:
- name: DSL
label: DSL
type: xdsl
- name: FON1
label: FON 1
type: other
- name: LAN1
label: LAN 1
type: 1000base-t
- name: WiFi
type: ieee802.11ax

View File

@ -0,0 +1,37 @@
---
manufacturer: AVM
model: FRITZ!Box 7690
slug: avm-fritzbox-7690
part_number: '20003057'
u_height: 0
is_full_depth: false
airflow: passive
comments: '[AVM FRITZ!Box 7690 Datasheet](https://avm.de/produkte/fritzbox/fritzbox-7690/technische-daten/)'
power-ports:
- name: Power
type: dc-terminal
maximum_draw: 30
interfaces:
- name: DSL
label: DSL
type: xdsl
- name: FON1
label: FON 1
type: other
- name: FON2
label: FON 2
type: other
- name: WAN_LAN
label: WAN/LAN
type: 2.5gbase-t
- name: LAN1
label: LAN 1
type: 2.5gbase-t
- name: LAN2
label: LAN 2
type: 1000base-t
- name: LAN3
label: LAN 3
type: 1000base-t
- name: WiFi
type: ieee802.11be

View File

@ -6,6 +6,7 @@ part_number: 17004660F1
weight: 3.2
weight_unit: kg
u_height: 1
front_image: true
is_full_depth: false
console-ports:
- name: Console

View File

@ -0,0 +1,90 @@
---
manufacturer: Arctic Wolf
model: AWN1000 10G
slug: arctic-wolf-awn1000-10g
description: 10G security sensor
part_number: AWN1000 10G
u_height: 1.0
airflow: front-to-rear
is_full_depth: true
comments: '[Product documentation](https://docs.arcticwolf.com/bundle/sensors/page/deploy_an_awn1000_10g_sensor_with_internal_tap.html)'
console-ports:
- name: Console
type: rj-45
interfaces:
- name: LAN0
type: 10gbase-t
mgmt_only: false
description: 10G internal tap
- name: LAN1
type: 10gbase-t
mgmt_only: false
description: 10G internal tap
- name: LAN2
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: LAN3
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: LAN4
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: LAN5
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: Management
type: 1000base-t
mgmt_only: true
- name: LAN6
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G Mirror
label: '1'
- name: LAN7
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G Mirror
label: '2'
- name: LAN8
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G Mirror
label: '3'
- name: LAN9
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G Mirror
label: '4'
- name: WAN0
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G internal tap
- name: WAN1
type: 10gbase-x-sfpp
mgmt_only: false
description: 10G internal tap
- name: WAN2
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: WAN3
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: WAN4
type: 1000base-t
mgmt_only: false
description: 1G internal tap
- name: WAN5
type: 1000base-t
mgmt_only: false
description: 1G internal tap
module-bays:
- name: PS-A
position: A
- name: PS-B
position: B

View File

@ -3,7 +3,7 @@ manufacturer: Avocent
model: ACS 8008 Single-AC
slug: avocent-acs8008sac-400
part_number: ACS8008SAC-400
comments: '[Avocent® ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
comments: '[Avocent ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
u_height: 1
is_full_depth: false
airflow: passive

View File

@ -3,7 +3,7 @@ manufacturer: Avocent
model: ACS 8016 Single-AC
slug: avocent-acs8016sac-400
part_number: ACS8016SAC-400
comments: '[Avocent® ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
comments: '[Avocent ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
u_height: 1
is_full_depth: false
airflow: passive

View File

@ -3,7 +3,7 @@ manufacturer: Avocent
model: ACS 8032 Single-AC
slug: avocent-acs8032sac-400
part_number: ACS8032SAC-400
comments: '[Avocent® ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
comments: '[Avocent ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
u_height: 1
is_full_depth: false
airflow: passive

View File

@ -3,7 +3,7 @@ manufacturer: Avocent
model: ACS 8048 Single-AC
slug: avocent-acs8048sac-400
part_number: ACS8048SAC-400
comments: '[Avocent® ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
comments: '[Avocent ACS 8000 Advanced Console Server Data Sheet](https://www.vertiv.com/4ae0c3/globalassets/products/monitoring-control-and-management/serial-consoles-and-gateways/avocent-acs-8000-advanced-console-server-data-sheet.pdf)'
u_height: 1
is_full_depth: false
airflow: passive

View File

@ -0,0 +1,67 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 1 M/E 4k
slug: blackmagicdesign-atem-constellation-1-m-e-4k
part_number: W-APS-40
u_height: 1
is_full_depth: false
airflow: right-to-left
weight: 4.12
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
power-ports:
- name: PSU
type: iec-60320-c14
allocated_draw: 90
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: MULTIVIEW-OUTPUT
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other

View File

@ -0,0 +1,67 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 1 M/E HD
slug: blackmagicdesign-atem-constellation-1-m-e-hd
part_number: W-APS-25
u_height: 1
is_full_depth: false
airflow: right-to-left
weight: 4.13
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
power-ports:
- name: PSU
type: iec-60320-c14
allocated_draw: 36
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: MULTIVIEW-OUTPUT
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other

View File

@ -0,0 +1,99 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 2 M/E 4k
slug: blackmagicdesign-atem-constellation-2-m-e-4k
part_number: W-APS-41
u_height: 1
is_full_depth: false
airflow: right-to-left
weight: 6.55
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
- name: REMOTE
type: rj-12
power-ports:
- name: PSU
type: iec-60320-c14
allocated_draw: 140
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-INPUT-13
type: bnc
- name: SDI-INPUT-14
type: bnc
- name: SDI-INPUT-15
type: bnc
- name: SDI-INPUT-16
type: bnc
- name: SDI-INPUT-17
type: bnc
- name: SDI-INPUT-18
type: bnc
- name: SDI-INPUT-19
type: bnc
- name: SDI-INPUT-20
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: SDI-OUTPUT-7
type: bnc
- name: SDI-OUTPUT-8
type: bnc
- name: SDI-OUTPUT-9
type: bnc
- name: SDI-OUTPUT-10
type: bnc
- name: SDI-OUTPUT-11
type: bnc
- name: SDI-OUTPUT-12
type: bnc
- name: MULTIVIEW-OUTPUT-1
type: bnc
- name: MULTIVIEW-OUTPUT-2
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other

View File

@ -0,0 +1,97 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 2 M/E HD
slug: blackmagicdesign-atem-constellation-2-m-e-hd
part_number: W-APS-26
u_height: 1
is_full_depth: false
airflow: right-to-left
weight: 6.57
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
power-ports:
- name: PSU
type: iec-60320-c14
allocated_draw: 52
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-INPUT-13
type: bnc
- name: SDI-INPUT-14
type: bnc
- name: SDI-INPUT-15
type: bnc
- name: SDI-INPUT-16
type: bnc
- name: SDI-INPUT-17
type: bnc
- name: SDI-INPUT-18
type: bnc
- name: SDI-INPUT-19
type: bnc
- name: SDI-INPUT-20
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: SDI-OUTPUT-7
type: bnc
- name: SDI-OUTPUT-8
type: bnc
- name: SDI-OUTPUT-9
type: bnc
- name: SDI-OUTPUT-10
type: bnc
- name: SDI-OUTPUT-11
type: bnc
- name: SDI-OUTPUT-12
type: bnc
- name: MULTIVIEW-OUTPUT-1
type: bnc
- name: MULTIVIEW-OUTPUT-2
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other

View File

@ -0,0 +1,180 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 4 M/E 4k
slug: blackmagicdesign-atem-constellation-4-m-e-4k
part_number: W-APS-42
u_height: 2
is_full_depth: false
airflow: right-to-left
weight: 18.52
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
- name: REMOTE
type: rj-12
power-ports:
- name: PSU1
type: iec-60320-c14
allocated_draw: 255
- name: PSU2
type: iec-60320-c14
allocated_draw: 255
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: MADI-IN
type: bnc
- name: MADI-OUT-1
type: bnc
- name: MADI-OUT-2
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-INPUT-13
type: bnc
- name: SDI-INPUT-14
type: bnc
- name: SDI-INPUT-15
type: bnc
- name: SDI-INPUT-16
type: bnc
- name: SDI-INPUT-17
type: bnc
- name: SDI-INPUT-18
type: bnc
- name: SDI-INPUT-19
type: bnc
- name: SDI-INPUT-20
type: bnc
- name: SDI-INPUT-21
type: bnc
- name: SDI-INPUT-22
type: bnc
- name: SDI-INPUT-23
type: bnc
- name: SDI-INPUT-24
type: bnc
- name: SDI-INPUT-25
type: bnc
- name: SDI-INPUT-26
type: bnc
- name: SDI-INPUT-27
type: bnc
- name: SDI-INPUT-28
type: bnc
- name: SDI-INPUT-29
type: bnc
- name: SDI-INPUT-30
type: bnc
- name: SDI-INPUT-31
type: bnc
- name: SDI-INPUT-32
type: bnc
- name: SDI-INPUT-33
type: bnc
- name: SDI-INPUT-34
type: bnc
- name: SDI-INPUT-35
type: bnc
- name: SDI-INPUT-36
type: bnc
- name: SDI-INPUT-37
type: bnc
- name: SDI-INPUT-38
type: bnc
- name: SDI-INPUT-39
type: bnc
- name: SDI-INPUT-40
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: SDI-OUTPUT-7
type: bnc
- name: SDI-OUTPUT-8
type: bnc
- name: SDI-OUTPUT-9
type: bnc
- name: SDI-OUTPUT-10
type: bnc
- name: SDI-OUTPUT-11
type: bnc
- name: SDI-OUTPUT-12
type: bnc
- name: SDI-OUTPUT-13
type: bnc
- name: SDI-OUTPUT-14
type: bnc
- name: SDI-OUTPUT-15
type: bnc
- name: SDI-OUTPUT-16
type: bnc
- name: SDI-OUTPUT-17
type: bnc
- name: SDI-OUTPUT-18
type: bnc
- name: SDI-OUTPUT-19
type: bnc
- name: SDI-OUTPUT-20
type: bnc
- name: SDI-OUTPUT-21
type: bnc
- name: SDI-OUTPUT-22
type: bnc
- name: SDI-OUTPUT-23
type: bnc
- name: SDI-OUTPUT-24
type: bnc
- name: MULTIVIEW-OUTPUT-1
type: bnc
- name: MULTIVIEW-OUTPUT-2
type: bnc
- name: MULTIVIEW-OUTPUT-3
type: bnc
- name: MULTIVIEW-OUTPUT-4
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other
- name: ANALOG-AUDIO-OUT-1
type: other
- name: ANALOG-AUDIO-OUT-2
type: other

View File

@ -0,0 +1,180 @@
---
manufacturer: Blackmagicdesign
model: ATEM Constellation 4 M/E HD
slug: blackmagicdesign-atem-constellation-4-m-e-hd
part_number: W-APS-27
u_height: 2
is_full_depth: false
airflow: right-to-left
weight: 11.53
weight_unit: lb
console-ports:
- name: USB0
type: usb-c
- name: REMOTE
type: rj-12
power-ports:
- name: PSU1
type: iec-60320-c14
allocated_draw: 147
- name: PSU2
type: iec-60320-c14
allocated_draw: 147
interfaces:
- name: CONTROL
type: 1000base-t
- name: TALKBACK
type: 1000base-t
rear-ports:
- name: REF-IN
type: bnc
- name: MADI-IN
type: bnc
- name: MADI-OUT-1
type: bnc
- name: MADI-OUT-2
type: bnc
- name: SDI-INPUT-1
type: bnc
- name: SDI-INPUT-2
type: bnc
- name: SDI-INPUT-3
type: bnc
- name: SDI-INPUT-4
type: bnc
- name: SDI-INPUT-5
type: bnc
- name: SDI-INPUT-6
type: bnc
- name: SDI-INPUT-7
type: bnc
- name: SDI-INPUT-8
type: bnc
- name: SDI-INPUT-9
type: bnc
- name: SDI-INPUT-10
type: bnc
- name: SDI-INPUT-11
type: bnc
- name: SDI-INPUT-12
type: bnc
- name: SDI-INPUT-13
type: bnc
- name: SDI-INPUT-14
type: bnc
- name: SDI-INPUT-15
type: bnc
- name: SDI-INPUT-16
type: bnc
- name: SDI-INPUT-17
type: bnc
- name: SDI-INPUT-18
type: bnc
- name: SDI-INPUT-19
type: bnc
- name: SDI-INPUT-20
type: bnc
- name: SDI-INPUT-21
type: bnc
- name: SDI-INPUT-22
type: bnc
- name: SDI-INPUT-23
type: bnc
- name: SDI-INPUT-24
type: bnc
- name: SDI-INPUT-25
type: bnc
- name: SDI-INPUT-26
type: bnc
- name: SDI-INPUT-27
type: bnc
- name: SDI-INPUT-28
type: bnc
- name: SDI-INPUT-29
type: bnc
- name: SDI-INPUT-30
type: bnc
- name: SDI-INPUT-31
type: bnc
- name: SDI-INPUT-32
type: bnc
- name: SDI-INPUT-33
type: bnc
- name: SDI-INPUT-34
type: bnc
- name: SDI-INPUT-35
type: bnc
- name: SDI-INPUT-36
type: bnc
- name: SDI-INPUT-37
type: bnc
- name: SDI-INPUT-38
type: bnc
- name: SDI-INPUT-39
type: bnc
- name: SDI-INPUT-40
type: bnc
- name: SDI-OUTPUT-1
type: bnc
- name: SDI-OUTPUT-2
type: bnc
- name: SDI-OUTPUT-3
type: bnc
- name: SDI-OUTPUT-4
type: bnc
- name: SDI-OUTPUT-5
type: bnc
- name: SDI-OUTPUT-6
type: bnc
- name: SDI-OUTPUT-7
type: bnc
- name: SDI-OUTPUT-8
type: bnc
- name: SDI-OUTPUT-9
type: bnc
- name: SDI-OUTPUT-10
type: bnc
- name: SDI-OUTPUT-11
type: bnc
- name: SDI-OUTPUT-12
type: bnc
- name: SDI-OUTPUT-13
type: bnc
- name: SDI-OUTPUT-14
type: bnc
- name: SDI-OUTPUT-15
type: bnc
- name: SDI-OUTPUT-16
type: bnc
- name: SDI-OUTPUT-17
type: bnc
- name: SDI-OUTPUT-18
type: bnc
- name: SDI-OUTPUT-19
type: bnc
- name: SDI-OUTPUT-20
type: bnc
- name: SDI-OUTPUT-21
type: bnc
- name: SDI-OUTPUT-22
type: bnc
- name: SDI-OUTPUT-23
type: bnc
- name: SDI-OUTPUT-24
type: bnc
- name: MULTIVIEW-OUTPUT-1
type: bnc
- name: MULTIVIEW-OUTPUT-2
type: bnc
- name: MULTIVIEW-OUTPUT-3
type: bnc
- name: MULTIVIEW-OUTPUT-4
type: bnc
- name: ANALOG-AUDIO-IN-1
type: other
- name: ANALOG-AUDIO-IN-2
type: other
- name: ANALOG-AUDIO-OUT-1
type: other
- name: ANALOG-AUDIO-OUT-2
type: other

View File

@ -0,0 +1,16 @@
---
manufacturer: Canon
model: imageRunner ADVANCE 525i III
slug: canon-imagerunner-advance-525i-iii
part_number: IR-ADV-525I-III
u_height: 0
comments: '[Monochrome A4 Laser Multifunctional](https://oip.manual.canon/USRMA-3906-zz-CS-715-enGB//)'
power-ports:
- name: PSU1
type: iec-60320-c14
interfaces:
- name: eth
type: 1000base-t
- name: wifi
label: Wireless
type: ieee802.11n

View File

@ -0,0 +1,16 @@
---
manufacturer: Canon
model: imageRunner ADVANCE DX 527i
slug: canon-imagerunner-advance-dx-527i
part_number: IR-ADV-527I
u_height: 0
comments: '[A4 Monochrome Laser Multifunctional](https://oip.manual.canon/USRMA-4844-zz-CS-717-enGB/)'
power-ports:
- name: PSU1
type: iec-60320-c14
interfaces:
- name: eth
type: 1000base-t
- name: wifi
label: Wireless
type: ieee802.11n

View File

@ -0,0 +1,121 @@
---
manufacturer: Cisco
model: 8212-48FH-M
slug: cisco-8212-48fh-m
part_number: 8212-48FH-M
u_height: 2
is_full_depth: true
airflow: front-to-rear
weight: 22
weight_unit: kg
comments: '[Cisco 8000 Series Routers Data Sheet](https://www.cisco.com/c/en/us/products/collateral/routers/8000-series-routers/datasheet-c78-742571.html)'
console-ports:
- name: con0
type: rj-45
module-bays:
- name: PM0
position: 0/PM0
description: Power module
- name: PM1
position: 0/PM1
description: Power module
interfaces:
- name: FourHundredGigE0/0/0/0
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/1
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/2
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/3
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/4
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/5
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/6
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/7
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/8
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/9
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/10
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/11
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/12
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/13
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/14
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/15
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/16
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/17
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/18
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/19
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/20
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/21
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/22
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/23
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/24
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/25
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/26
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/27
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/28
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/29
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/30
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/31
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/32
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/33
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/34
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/35
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/36
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/37
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/38
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/39
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/40
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/41
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/42
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/43
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/44
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/45
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/46
type: 400gbase-x-qsfpdd
- name: FourHundredGigE0/0/0/47
type: 400gbase-x-qsfpdd
- name: MgmtEth0/RP0/CPU0/0
type: 1000base-t
mgmt_only: true

View File

@ -5,6 +5,8 @@ slug: cisco-apic-l3
part_number: APIC-L3
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
console-ports:
- name: Con
type: rj-45

View File

@ -0,0 +1,60 @@
---
manufacturer: Cisco
model: Catalyst C1200-16T-2G
slug: cisco-c1200-16t-2g
part_number: C1200-16T-2G
comments: '[Cisco Catalyst 1200 Series Switches Data Sheet](https://www.cisco.com/c/en/us/products/collateral/switches/catalyst-1200-series-switches/nb-06-cat1200-ser-data-sheet-cte-en.html)'
airflow: passive
weight: 1.8
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-c
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 11
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-x-sfp
- name: GigabitEthernet18
type: 1000base-x-sfp
- name: Vlan1
type: virtual

View File

@ -15,11 +15,16 @@ module-bays:
position: '0'
- name: PSU1
position: '1'
- name: SM 1 # SM = Service Module
- name: SM 1 # SM subslot 1/0 (Service Module)
position: '1'
- name: SM 2
- name: NIM 1 # NIM = Network Interface Module
- name: NIM 2
position: '2'
- name: NIM 1 # NIM subslot 0/1 (Network Interface Module)
position: '1'
- name: NIM 2 # NIM subslot 0/2
position: '2'
- name: PIM 1 # PIM = Pluggable Interface Module (LTE/5G)
position: '1'
console-ports:
- name: con0
type: rj-45

View File

@ -5,9 +5,9 @@ slug: cisco-c9120axi-e
part_number: C9120AXI-E
u_height: 0
is_full_depth: false
weight: 0.9
weight: 1.3
weight_unit: kg
comments: '[Cisco Catalyst 9115 Series Access Points Data Sheet](https://www.cisco.com/c/en/us/products/collateral/wireless/catalyst-9100ax-access-points/datasheet-c78-741988.html)'
comments: '[Cisco Catalyst 9120AX Series Access Points Data Sheet](https://www.cisco.com/c/en/us/products/collateral/wireless/catalyst-9120ax-series-access-points/datasheet-c78-742115.html)'
interfaces:
- name: Dot11Radio0
type: ieee802.11ax

View File

@ -0,0 +1,23 @@
---
manufacturer: Cisco
model: Catalyst 9120AXI-K
slug: cisco-c9120axi-k
part_number: C9120AXI-K
u_height: 0
is_full_depth: false
weight: 1.3
weight_unit: kg
comments: '[Cisco Catalyst 9120AX Series Access Points Data Sheet](https://www.cisco.com/c/en/us/products/collateral/wireless/catalyst-9120ax-series-access-points/datasheet-c78-742115.html)'
interfaces:
- name: Dot11Radio0
type: ieee802.11ax
- name: Dot11Radio1
type: ieee802.11ax
- name: GigabitEthernet0
type: 2.5gbase-t
poe_mode: pd
console-ports:
- name: console
type: rj-45
- name: usb
type: usb-mini-b

View File

@ -0,0 +1,134 @@
---
manufacturer: Cisco
model: Catalyst 9300LM-24U-4Y
part_number: C9300LM-24U-4y
slug: cisco-c9300lm-24u-4y
u_height: 1
is_full_depth: true
weight: 5.21
weight_unit: kg
console-ports:
- name: con 0
type: rj-45
- name: usb
type: usb-mini-b
interfaces:
- name: GigabitEthernet1/0/1
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/2
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/3
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/4
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/5
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/6
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/7
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/8
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/9
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/10
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/11
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/12
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/13
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/14
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/15
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/16
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/17
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/18
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/19
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/20
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/21
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/22
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/23
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/24
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: TwentyFiveGigabitEthernet1/1/1
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/2
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/3
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/4
type: 25gbase-x-sfp28
- name: StackPort1/1
type: cisco-stackwise
- name: StackPort1/2
type: cisco-stackwise
- name: GigabitEthernet0/0
type: 1000base-t
mgmt_only: true
module-bays:
- name: PS-A
position: A
- name: PS-B
position: B
- name: FAN 1
- name: FAN 2
- name: FAN 3

View File

@ -0,0 +1,230 @@
---
manufacturer: Cisco
model: Catalyst 9300LM-48U-4Y
part_number: C9300LM-48U-4y
slug: cisco-c9300lm-48u-4y
u_height: 1
weight: 5.45
weight_unit: kg
is_full_depth: true
console-ports:
- name: con 0
type: rj-45
- name: usb
type: usb-mini-b
interfaces:
- name: GigabitEthernet1/0/1
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/2
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/3
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/4
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/5
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/6
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/7
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/8
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/9
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/10
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/11
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/12
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/13
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/14
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/15
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/16
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/17
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/18
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/19
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/20
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/21
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/22
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/23
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/24
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/25
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/26
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/27
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/28
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/29
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/30
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/31
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/32
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/33
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/34
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/35
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/36
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/37
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/38
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/39
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/40
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/41
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/42
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/43
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/44
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/45
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/46
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/47
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: GigabitEthernet1/0/48
type: 1000base-t
poe_mode: pse
poe_type: type3-ieee802.3bt
- name: TwentyFiveGigabitEthernet1/1/1
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/2
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/3
type: 25gbase-x-sfp28
- name: TwentyFiveGigabitEthernet1/1/4
type: 25gbase-x-sfp28
- name: StackPort1/1
type: cisco-stackwise
- name: StackPort1/2
type: cisco-stackwise
- name: GigabitEthernet0/0
type: 1000base-t
mgmt_only: true
module-bays:
- name: PS-A
position: A
- name: PS-B
position: B
- name: FAN 1
- name: FAN 2
- name: FAN 3

View File

@ -0,0 +1,240 @@
---
manufacturer: Cisco
model: Catalyst 9500X-28C8D
slug: cisco-c9500x-28c8d
part_number: C9500X-28C8D
u_height: 1
is_full_depth: true
comments: '[Cisco Catalyst 9500 Series Switches Data Sheet](https://www.cisco.com/c/en/us/products/collateral/switches/catalyst-9500-series-switches/nb-06-cat9500-ser-data-sheet-cte-en.html)'
front_image: true
rear_image: true
weight: 13.28
weight_unit: kg
airflow: front-to-rear
console-ports:
- name: con0
type: rj-45
- name: usb
type: usb-c
interfaces:
- name: GigabitEthernet0/0
type: 1000base-t
speed: 1000000
mgmt_only: true
- name: HundredGigE1/0/1
label: Hu1/0/1
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/2
label: Hu1/0/2
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/3
label: Hu1/0/3
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/4
label: Hu1/0/4
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/5
label: Hu1/0/5
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/6
label: Hu1/0/6
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/7
label: Hu1/0/7
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/8
label: Hu1/0/8
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/9
label: Hu1/0/9
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/10
label: Hu1/0/10
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/11
label: Hu1/0/11
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/12
label: Hu1/0/12
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/13
label: Hu1/0/13
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/14
label: Hu1/0/14
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: FourHundredGigE1/0/15
label: Fou1/0/15
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/16
label: Fou1/0/16
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/17
label: Fou1/0/17
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/18
label: Fou1/0/18
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/19
label: Fou1/0/19
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/20
label: Fou1/0/20
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/21
label: Fou1/0/21
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: FourHundredGigE1/0/22
label: Fou1/0/22
type: 400gbase-x-qsfpdd
speed: 400000000
mgmt_only: false
- name: HundredGigE1/0/23
label: Hu1/0/23
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/24
label: Hu1/0/24
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/25
label: Hu1/0/25
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/26
label: Hu1/0/26
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/27
label: Hu1/0/27
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/28
label: Hu1/0/28
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/29
label: Hu1/0/29
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/30
label: Hu1/0/30
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/31
label: Hu1/0/31
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/32
label: Hu1/0/32
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/33
label: Hu1/0/33
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/34
label: Hu1/0/34
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/35
label: Hu1/0/35
type: 100gbase-x-qsfp28
speed: 100000000
mgmt_only: false
- name: HundredGigE1/0/36
label: Hu1/0/36
type: 100gbase-x-qsfp28
speed: 10000000
mgmt_only: false
- name: appGigabitEthernet1/0/1
label: Ap1/0/1
type: virtual
speed: 10000000
mgmt_only: false
description: App-hosting Gigabit Ethernet
- name: appGigabitEthernet1/0/2
label: Ap1/0/2
type: virtual
speed: 10000000
mgmt_only: false
description: App-hosting Gigabit Ethernet
module-bays:
- name: fan1
label: FAN-1
position: '1'
- name: fan2
label: FAN-2
position: '2'
- name: fan3
label: FAN-3
position: '3'
- name: fan4
label: FAN-4
position: '4'
- name: fan5
label: FAN-5
position: '5'
- name: fan6
label: FAN-6
position: '6'
- name: ps1
label: PS-1
position: '1'
- name: ps2
label: PS-2
position: '2'

View File

@ -0,0 +1,58 @@
---
manufacturer: Cisco
model: CBS250-16T-2G
slug: cisco-cbs250-16t-2g
part_number: CBS250-16T-2G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 1.78
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-x-sfp
- name: GigabitEthernet18
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 19

View File

@ -0,0 +1,128 @@
---
manufacturer: Cisco
model: CBS250-24PP-4G
slug: cisco-cbs250-24pp-4g
part_number: CBS250-24PP-4G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 3.53
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet2
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet3
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet4
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet5
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet6
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet7
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet8
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet9
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet10
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet11
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet12
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet13
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet14
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet15
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet16
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet17
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet18
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet19
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet20
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet21
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet22
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet23
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet24
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet25
type: 1000base-x-sfp
- name: GigabitEthernet26
type: 1000base-x-sfp
- name: GigabitEthernet27
type: 1000base-x-sfp
- name: GigabitEthernet28
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-mini-b
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 129

View File

@ -0,0 +1,80 @@
---
manufacturer: Cisco
model: CBS250-24T-4G
slug: cisco-cbs250-24t-4g
part_number: CBS250-24T-4G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 2.63
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
type: 1000base-x-sfp
- name: GigabitEthernet26
type: 1000base-x-sfp
- name: GigabitEthernet27
type: 1000base-x-sfp
- name: GigabitEthernet28
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-mini-b
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 26

View File

@ -0,0 +1,80 @@
---
manufacturer: Cisco
model: CBS250-24T-4X
slug: cisco-cbs250-24t-4x
part_number: CBS250-24T-4X
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 2.78
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: TenGigabitEthernet1
type: 10gbase-x-sfpp
- name: TenGigabitEthernet2
type: 10gbase-x-sfpp
- name: TenGigabitEthernet3
type: 10gbase-x-sfpp
- name: TenGigabitEthernet4
type: 10gbase-x-sfpp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-mini-b
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 28

View File

@ -0,0 +1,128 @@
---
manufacturer: Cisco
model: CBS250-48T-4G
slug: cisco-cbs250-48t-4g
part_number: CBS250-48T-4G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: side-to-rear
weight: 3.95
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
type: 1000base-t
- name: GigabitEthernet26
type: 1000base-t
- name: GigabitEthernet27
type: 1000base-t
- name: GigabitEthernet28
type: 1000base-t
- name: GigabitEthernet29
type: 1000base-t
- name: GigabitEthernet30
type: 1000base-t
- name: GigabitEthernet31
type: 1000base-t
- name: GigabitEthernet32
type: 1000base-t
- name: GigabitEthernet33
type: 1000base-t
- name: GigabitEthernet34
type: 1000base-t
- name: GigabitEthernet35
type: 1000base-t
- name: GigabitEthernet36
type: 1000base-t
- name: GigabitEthernet37
type: 1000base-t
- name: GigabitEthernet38
type: 1000base-t
- name: GigabitEthernet39
type: 1000base-t
- name: GigabitEthernet40
type: 1000base-t
- name: GigabitEthernet41
type: 1000base-t
- name: GigabitEthernet42
type: 1000base-t
- name: GigabitEthernet43
type: 1000base-t
- name: GigabitEthernet44
type: 1000base-t
- name: GigabitEthernet45
type: 1000base-t
- name: GigabitEthernet46
type: 1000base-t
- name: GigabitEthernet47
type: 1000base-t
- name: GigabitEthernet48
type: 1000base-t
- name: GigabitEthernet49
type: 1000base-x-sfp
- name: GigabitEthernet50
type: 1000base-x-sfp
- name: GigabitEthernet51
type: 1000base-x-sfp
- name: GigabitEthernet52
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-mini-b
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 49

View File

@ -0,0 +1,128 @@
---
manufacturer: Cisco
model: CBS250-48T-4X
slug: cisco-cbs250-48t-4x
part_number: CBS250-48T-4X
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: side-to-rear
weight: 3.95
weight_unit: kg
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
type: 1000base-t
- name: GigabitEthernet26
type: 1000base-t
- name: GigabitEthernet27
type: 1000base-t
- name: GigabitEthernet28
type: 1000base-t
- name: GigabitEthernet29
type: 1000base-t
- name: GigabitEthernet30
type: 1000base-t
- name: GigabitEthernet31
type: 1000base-t
- name: GigabitEthernet32
type: 1000base-t
- name: GigabitEthernet33
type: 1000base-t
- name: GigabitEthernet34
type: 1000base-t
- name: GigabitEthernet35
type: 1000base-t
- name: GigabitEthernet36
type: 1000base-t
- name: GigabitEthernet37
type: 1000base-t
- name: GigabitEthernet38
type: 1000base-t
- name: GigabitEthernet39
type: 1000base-t
- name: GigabitEthernet40
type: 1000base-t
- name: GigabitEthernet41
type: 1000base-t
- name: GigabitEthernet42
type: 1000base-t
- name: GigabitEthernet43
type: 1000base-t
- name: GigabitEthernet44
type: 1000base-t
- name: GigabitEthernet45
type: 1000base-t
- name: GigabitEthernet46
type: 1000base-t
- name: GigabitEthernet47
type: 1000base-t
- name: GigabitEthernet48
type: 1000base-t
- name: TenGigabitEthernet1
type: 10gbase-x-sfpp
- name: TenGigabitEthernet2
type: 10gbase-x-sfpp
- name: TenGigabitEthernet3
type: 10gbase-x-sfpp
- name: TenGigabitEthernet4
type: 10gbase-x-sfpp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
- name: Console (USB)
type: usb-mini-b
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 49

View File

@ -0,0 +1,58 @@
---
manufacturer: Cisco
model: CBS250-8FP-E-2G
slug: cisco-cbs250-8fp-e-2g
part_number: CBS250-8FP-E-2G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 1.53
weight_unit: kg
is_full_depth: false
front_image: false
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet2
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet3
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet4
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet5
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet6
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet7
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet8
type: 1000base-t
poe_type: type2-ieee802.3at
poe_mode: pse
- name: GigabitEthernet9
type: 1000base-x-sfp
- name: GigabitEthernet10
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
power-ports:
- name: 12V
type: dc-terminal
maximum_draw: 146

View File

@ -0,0 +1,42 @@
---
manufacturer: Cisco
model: CBS250-8T-E-2G
slug: cisco-cbs250-8t-e-2g
part_number: CBS250-8T-E-2G
comments: '[CBS250 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-250-series-smart-switches/nb-06-bus250-smart-switch-ds-cte-en.html)'
airflow: passive
weight: 1.39
weight_unit: kg
is_full_depth: false
front_image: false
u_height: 1
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-x-sfp
- name: GigabitEthernet10
type: 1000base-x-sfp
- name: Vlan1
type: virtual
console-ports:
- name: Console
type: rj-45
power-ports:
- name: 12V
type: dc-terminal
maximum_draw: 13

View File

@ -0,0 +1,60 @@
---
manufacturer: Cisco
model: CBS350-16T-2G
slug: cisco-cbs350-16t-2g
part_number: CBS350-16T-2G
u_height: 1.0
is_full_depth: false
airflow: passive
front_image: true
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
weight: 1.78
weight_unit: kg
console-ports:
- name: con0
type: rj-45
- name: con1
type: usb-mini-b
power-ports:
- name: Power
type: iec-60320-c14
maximum_draw: 19
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-x-sfp
- name: GigabitEthernet18
type: 1000base-x-sfp
- name: vlan1
type: virtual

View File

@ -3,8 +3,9 @@ manufacturer: Cisco
model: CBS350-24P-4G
slug: cisco-cbs350-24p-4g
part_number: WCBS350-24P-4G
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
is_full_depth: false
front_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1

View File

@ -3,7 +3,7 @@ manufacturer: Cisco
model: CBS350-24T-4X
slug: cisco-cbs350-24t-4x
part_number: WCBS350-24T-4X
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
airflow: side-to-rear
weight: 2.78
weight_unit: kg
@ -58,13 +58,13 @@ interfaces:
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
- name: TenGigabitEthernet1
type: 10gbase-x-sfpp
- name: GigabitEthernet26
- name: TenGigabitEthernet2
type: 10gbase-x-sfpp
- name: GigabitEthernet27
- name: TenGigabitEthernet3
type: 10gbase-x-sfpp
- name: GigabitEthernet28
- name: TenGigabitEthernet4
type: 10gbase-x-sfpp
- name: Vlan1
type: virtual

View File

@ -5,7 +5,7 @@ slug: cisco-cbs350-48fp-4g
part_number: CBS350-48FP-4G
u_height: 1.0
is_full_depth: false
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
weight: 5.82
weight_unit: kg
console-ports:

View File

@ -5,7 +5,7 @@ slug: cisco-cbs350-48fp-4x
part_number: CBS350-48FP-4X
u_height: 1.0
is_full_depth: false
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
weight: 5.82
weight_unit: kg
console-ports:

View File

@ -5,7 +5,7 @@ slug: cisco-cbs350-48p-4g
part_number: CBS350-48P-4G
u_height: 1.0
is_full_depth: false
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
weight: 5.43
weight_unit: kg
console-ports:

View File

@ -5,7 +5,7 @@ slug: cisco-cbs350-48p-4x
part_number: CBS350-48P-4X
u_height: 1.0
is_full_depth: false
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
weight: 5.43
weight_unit: kg
console-ports:

View File

@ -3,7 +3,7 @@ manufacturer: Cisco
model: CBS350-48T-4G
slug: cisco-cbs350-48t-4g
part_number: WCBS350-48T-4G
comments: https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html
comments: '[CBS350 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/business-350-series-managed-switches/datasheet-c78-744156.html)'
airflow: side-to-rear
weight: 2.78
weight_unit: kg

View File

@ -0,0 +1,39 @@
---
manufacturer: Cisco
model: Cisco FMC4600
slug: cisco-fmc4600
part_number: FMC4600
u_height: 1
is_full_depth: true
airflow: front-to-rear
weight: 36
weight_unit: lb
comments: '[Data sheet](https://www.cisco.com/c/en/us/products/collateral/security/firesight-management-center/datasheet-c78-736775.pdf)'
console-ports:
- name: Con
type: rj-45
label: IOIOI
front_image: true
rear_image: true
interfaces:
- name: CIMC
type: 1000base-t
mgmt_only: true
label: o]
- name: eth0
type: 1000base-t
mgmt_only: true
label: '1'
- name: eth1
type: 1000base-t
mgmt_only: true
label: '2'
- name: eth2
type: 10gbase-x-sfpp
- name: eth3
type: 10gbase-x-sfpp
module-bays:
- name: PS-1
position: '1'
- name: PS-2
position: '2'

View File

@ -5,6 +5,8 @@ slug: cisco-fpr4112-ngfw-k9
part_number: FPR4112-NGFW-K9
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
comments: '[Cisco Firepower 4100 Series Data Sheet](https://www.cisco.com/c/en/us/products/collateral/security/firepower-4100-series/datasheet-c78-742474.html)'
console-ports:
- name: Console

View File

@ -5,6 +5,8 @@ slug: cisco-fpr4115-ngfw-k9
part_number: FPR4115-NGFW-K9
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
comments: '[Cisco Firepower 4100 Series Data Sheet](https://www.cisco.com/c/en/us/products/collateral/security/firepower-4100-series/datasheet-c78-742474.html)'
console-ports:
- name: Console

View File

@ -5,6 +5,8 @@ slug: cisco-fpr4125-ngfw-k9
part_number: FPR4125-NGFW-K9
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
comments: '[Cisco Firepower 4100 Series Data Sheet](https://www.cisco.com/c/en/us/products/collateral/security/firepower-4100-series/datasheet-c78-742474.html)'
console-ports:
- name: Console

View File

@ -5,6 +5,8 @@ slug: cisco-fpr4145-ngfw-k9
part_number: FPR4145-NGFW-K9
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
comments: '[Cisco Firepower 4100 Series Data Sheet](https://www.cisco.com/c/en/us/products/collateral/security/firepower-4100-series/datasheet-c78-742474.html)'
console-ports:
- name: Console

View File

@ -0,0 +1,42 @@
---
manufacturer: Cisco
model: Meraki MX95
slug: cisco-meraki-mx95
part_number: MX95
u_height: 1
is_full_depth: false
airflow: front-to-rear
weight: 10.74
weight_unit: lb
comments: '[Meraki MX105 Datasheet](https://documentation.meraki.com/MX/MX_Overviews_and_Specifications/MX95%2F%2F105_Datasheet)'
power-ports:
- name: Slot 1
type: iec-60320-c14
maximum_draw: 109
allocated_draw: 42
interfaces:
- name: USB
type: lte
- name: Management
type: 1000base-t
mgmt_only: true
- name: WAN 1
type: 10gbase-x-sfpp
- name: WAN 2
type: 10gbase-x-sfpp
- name: WAN 3
type: 2.5gbase-t
- name: WAN 4
type: 2.5gbase-t
- name: Port 5
type: 1000base-t
- name: Port 6
type: 1000base-t
- name: Port 7
type: 1000base-t
- name: Port 8
type: 1000base-t
- name: Port 9
type: 10gbase-x-sfpp
- name: Port 10
type: 10gbase-x-sfpp

View File

@ -1,7 +1,7 @@
---
manufacturer: Cisco
model: Nexus C3064PQ-10GE
slug: cisco-n3k-c3064q-10ge
slug: cisco-nexus-c3064pq-10ge
part_number: N3K-C3064PQ-10GE
u_height: 1
is_full_depth: false

View File

@ -0,0 +1,44 @@
---
manufacturer: Cisco
model: N7K-C7009
slug: cisco-n7k-c7009
part_number: N7K-C7009
u_height: 14
weight: 45
weight_unit: kg
airflow: left-to-right
is_full_depth: true
subdevice_role: parent
comments: '[Cisco Nexus 7000 Series Switches Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/nexus-7000-series-switches/Data_Sheet_C78-437762.pdf)'
module-bays:
- name: Slot 1
position: '1'
description: Supervisor Module
- name: Slot 2
position: '2'
description: Supervisor Module
- name: Slot 3
position: '3'
description: Line Card
- name: Slot 4
position: '4'
description: Line Card
- name: Slot 5
position: '5'
description: Line Card
- name: Slot 6
position: '6'
description: Line Card
- name: Slot 7
position: '7'
description: Line Card
- name: Slot 8
position: '8'
description: Line Card
- name: Slot 9
position: '9'
description: Line Card
- name: PSU0
position: '0'
- name: PSU1
position: '1'

View File

@ -0,0 +1,252 @@
---
manufacturer: Cisco
model: Nexus 93360YC-FX2
slug: cisco-n9k-c93360yc-fx2
part_number: N9K-C93360YC-FX2
front_image: true
rear_image: true
u_height: 2
is_full_depth: true
weight: 12.4
weight_unit: kg
console-ports:
- name: Console
type: rj-45
- name: usb1
type: usb-a
interfaces:
- name: Ethernet1/1
type: 25gbase-x-sfp28
- name: Ethernet1/2
type: 25gbase-x-sfp28
- name: Ethernet1/3
type: 25gbase-x-sfp28
- name: Ethernet1/4
type: 25gbase-x-sfp28
- name: Ethernet1/5
type: 25gbase-x-sfp28
- name: Ethernet1/6
type: 25gbase-x-sfp28
- name: Ethernet1/7
type: 25gbase-x-sfp28
- name: Ethernet1/8
type: 25gbase-x-sfp28
- name: Ethernet1/9
type: 25gbase-x-sfp28
- name: Ethernet1/10
type: 25gbase-x-sfp28
- name: Ethernet1/11
type: 25gbase-x-sfp28
- name: Ethernet1/12
type: 25gbase-x-sfp28
- name: Ethernet1/13
type: 25gbase-x-sfp28
- name: Ethernet1/14
type: 25gbase-x-sfp28
- name: Ethernet1/15
type: 25gbase-x-sfp28
- name: Ethernet1/16
type: 25gbase-x-sfp28
- name: Ethernet1/17
type: 25gbase-x-sfp28
- name: Ethernet1/18
type: 25gbase-x-sfp28
- name: Ethernet1/19
type: 25gbase-x-sfp28
- name: Ethernet1/20
type: 25gbase-x-sfp28
- name: Ethernet1/21
type: 25gbase-x-sfp28
- name: Ethernet1/22
type: 25gbase-x-sfp28
- name: Ethernet1/23
type: 25gbase-x-sfp28
- name: Ethernet1/24
type: 25gbase-x-sfp28
- name: Ethernet1/25
type: 25gbase-x-sfp28
- name: Ethernet1/26
type: 25gbase-x-sfp28
- name: Ethernet1/27
type: 25gbase-x-sfp28
- name: Ethernet1/28
type: 25gbase-x-sfp28
- name: Ethernet1/29
type: 25gbase-x-sfp28
- name: Ethernet1/30
type: 25gbase-x-sfp28
- name: Ethernet1/31
type: 25gbase-x-sfp28
- name: Ethernet1/32
type: 25gbase-x-sfp28
- name: Ethernet1/33
type: 25gbase-x-sfp28
- name: Ethernet1/34
type: 25gbase-x-sfp28
- name: Ethernet1/35
type: 25gbase-x-sfp28
- name: Ethernet1/36
type: 25gbase-x-sfp28
- name: Ethernet1/37
type: 25gbase-x-sfp28
- name: Ethernet1/38
type: 25gbase-x-sfp28
- name: Ethernet1/39
type: 25gbase-x-sfp28
- name: Ethernet1/40
type: 25gbase-x-sfp28
- name: Ethernet1/41
type: 25gbase-x-sfp28
- name: Ethernet1/42
type: 25gbase-x-sfp28
- name: Ethernet1/43
type: 25gbase-x-sfp28
- name: Ethernet1/44
type: 25gbase-x-sfp28
- name: Ethernet1/45
type: 25gbase-x-sfp28
- name: Ethernet1/46
type: 25gbase-x-sfp28
- name: Ethernet1/47
type: 25gbase-x-sfp28
- name: Ethernet1/48
type: 25gbase-x-sfp28
- name: Ethernet1/49
type: 25gbase-x-sfp28
- name: Ethernet1/50
type: 25gbase-x-sfp28
- name: Ethernet1/51
type: 25gbase-x-sfp28
- name: Ethernet1/52
type: 25gbase-x-sfp28
- name: Ethernet1/53
type: 25gbase-x-sfp28
- name: Ethernet1/54
type: 25gbase-x-sfp28
- name: Ethernet1/55
type: 25gbase-x-sfp28
- name: Ethernet1/56
type: 25gbase-x-sfp28
- name: Ethernet1/57
type: 25gbase-x-sfp28
- name: Ethernet1/58
type: 25gbase-x-sfp28
- name: Ethernet1/59
type: 25gbase-x-sfp28
- name: Ethernet1/60
type: 25gbase-x-sfp28
- name: Ethernet1/61
type: 25gbase-x-sfp28
- name: Ethernet1/62
type: 25gbase-x-sfp28
- name: Ethernet1/63
type: 25gbase-x-sfp28
- name: Ethernet1/64
type: 25gbase-x-sfp28
- name: Ethernet1/65
type: 25gbase-x-sfp28
- name: Ethernet1/66
type: 25gbase-x-sfp28
- name: Ethernet1/67
type: 25gbase-x-sfp28
- name: Ethernet1/68
type: 25gbase-x-sfp28
- name: Ethernet1/69
type: 25gbase-x-sfp28
- name: Ethernet1/70
type: 25gbase-x-sfp28
- name: Ethernet1/71
type: 25gbase-x-sfp28
- name: Ethernet1/72
type: 25gbase-x-sfp28
- name: Ethernet1/73
type: 25gbase-x-sfp28
- name: Ethernet1/74
type: 25gbase-x-sfp28
- name: Ethernet1/75
type: 25gbase-x-sfp28
- name: Ethernet1/76
type: 25gbase-x-sfp28
- name: Ethernet1/77
type: 25gbase-x-sfp28
- name: Ethernet1/78
type: 25gbase-x-sfp28
- name: Ethernet1/79
type: 25gbase-x-sfp28
- name: Ethernet1/80
type: 25gbase-x-sfp28
- name: Ethernet1/81
type: 25gbase-x-sfp28
- name: Ethernet1/82
type: 25gbase-x-sfp28
- name: Ethernet1/83
type: 25gbase-x-sfp28
- name: Ethernet1/84
type: 25gbase-x-sfp28
- name: Ethernet1/85
type: 25gbase-x-sfp28
- name: Ethernet1/86
type: 25gbase-x-sfp28
- name: Ethernet1/87
type: 25gbase-x-sfp28
- name: Ethernet1/88
type: 25gbase-x-sfp28
- name: Ethernet1/89
type: 25gbase-x-sfp28
- name: Ethernet1/90
type: 25gbase-x-sfp28
- name: Ethernet1/91
type: 25gbase-x-sfp28
- name: Ethernet1/92
type: 25gbase-x-sfp28
- name: Ethernet1/93
type: 25gbase-x-sfp28
- name: Ethernet1/94
type: 25gbase-x-sfp28
- name: Ethernet1/95
type: 25gbase-x-sfp28
- name: Ethernet1/96
type: 25gbase-x-sfp28
- name: Ethernet1/97
type: 100gbase-x-qsfp28
- name: Ethernet1/98
type: 100gbase-x-qsfp28
- name: Ethernet1/99
type: 100gbase-x-qsfp28
- name: Ethernet1/100
type: 100gbase-x-qsfp28
- name: Ethernet1/101
type: 100gbase-x-qsfp28
- name: Ethernet1/102
type: 100gbase-x-qsfp28
- name: Ethernet1/103
type: 100gbase-x-qsfp28
- name: Ethernet1/104
type: 100gbase-x-qsfp28
- name: Ethernet1/105
type: 100gbase-x-qsfp28
- name: Ethernet1/106
type: 100gbase-x-qsfp28
- name: Ethernet1/107
type: 100gbase-x-qsfp28
- name: Ethernet1/108
type: 100gbase-x-qsfp28
- name: mgmt0
type: 1000base-t
mgmt_only: true
- name: mgmt1
type: 1000base-x-sfp
mgmt_only: true
module-bays:
- name: PS1
label: Power Supply 1
position: '1'
- name: PS2
label: Power Supply 2
position: '2'
- name: Fan 1
position: '1'
- name: Fan 2
position: '2'
- name: Fan 3
position: '3'

View File

@ -5,6 +5,8 @@ part_number: N9K-C93600CD-GX
slug: cisco-n9k-c93600cd-gx
u_height: 1
is_full_depth: true
front_image: true
rear_image: true
console-ports:
- name: console
type: rj-45

View File

@ -0,0 +1,51 @@
---
manufacturer: Cisco
model: N9K-C9408
slug: cisco-n9k-c9408
part_number: N9K-C9408
u_height: 4
is_full_depth: false
weight: 55
weight_unit: kg
airflow: front-to-rear
comments: '[Cisco Nexus 9400 Series Switches Data Sheet](https://www.cisco.com/c/en/us/products/collateral/switches/nexus-9000-series-switches/nexus9400-series-switches-ds.html'
module-bays:
- name: PS1
position: 1/PM1
description: Power module
- name: PS2
position: 1/PM1
description: Power module
- name: PS3
position: 1/PM1
description: Power module
- name: PS4
position: 1/PM1
description: Power module
- name: Slot 1
position: '1'
label: Line Card
- name: Slot 2
position: '2'
label: Line Card
- name: Slot 3
position: '3'
label: Line Card
- name: Slot 4
position: '4'
label: Line Card
- name: Slot 5
position: '5'
label: Line Card
- name: Slot 6
position: '6'
label: Line Card
- name: Slot 7
position: '7'
label: Line Card
- name: Slot 8
position: '8'
label: Line Card
- name: Slot 9
position: '9'
label: Supervisor

View File

@ -5,6 +5,9 @@ part_number: SG300-28
slug: cisco-sg300-28
u_height: 1
is_full_depth: false
weight: 3.3
weight_unit: kg
front_image: true
comments: '[SG300 Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/small-business-smart-switches/data_sheet_c78-610061.html)'
console-ports:
- name: con 0

View File

@ -0,0 +1,123 @@
---
manufacturer: Cisco
model: SG300-52
part_number: SG300-52
slug: cisco-sg300-52
u_height: 1
is_full_depth: false
front_image: true
weight: 3.9
weight_unit: kg
comments: '[SG300 Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/small-business-smart-switches/data_sheet_c78-610061.html)'
console-ports:
- name: con 0
type: de-9
power-ports:
- name: PS-A
type: iec-60320-c14
maximum_draw: 46
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
type: 1000base-t
- name: GigabitEthernet26
type: 1000base-t
- name: GigabitEthernet27
type: 1000base-t
- name: GigabitEthernet28
type: 1000base-t
- name: GigabitEthernet29
type: 1000base-t
- name: GigabitEthernet30
type: 1000base-t
- name: GigabitEthernet31
type: 1000base-t
- name: GigabitEthernet32
type: 1000base-t
- name: GigabitEthernet33
type: 1000base-t
- name: GigabitEthernet34
type: 1000base-t
- name: GigabitEthernet35
type: 1000base-t
- name: GigabitEthernet36
type: 1000base-t
- name: GigabitEthernet37
type: 1000base-t
- name: GigabitEthernet38
type: 1000base-t
- name: GigabitEthernet39
type: 1000base-t
- name: GigabitEthernet40
type: 1000base-t
- name: GigabitEthernet41
type: 1000base-t
- name: GigabitEthernet42
type: 1000base-t
- name: GigabitEthernet43
type: 1000base-t
- name: GigabitEthernet44
type: 1000base-t
- name: GigabitEthernet45
type: 1000base-t
- name: GigabitEthernet46
type: 1000base-t
- name: GigabitEthernet47
type: 1000base-t
- name: GigabitEthernet48
type: 1000base-t
- name: GigabitEthernet49
type: 1000base-t
- name: GigabitEthernet50
type: 1000base-t
- name: GigabitEthernet51
type: 1000base-x-sfp
- name: GigabitEthernet52
type: 1000base-x-sfp

View File

@ -0,0 +1,141 @@
---
manufacturer: Cisco
model: SG350-52
slug: cisco-sg350-52
part_number: SG350-52
u_height: 1.0
is_full_depth: false
weight: 2.8
weight_unit: kg
front_image: true
comments: '[SG350 Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/small-business-smart-switches/data-sheet-c78-737359.html)'
console-ports:
- name: console
type: de-9
power-ports:
- name: Power
type: iec-60320-c14
maximum_draw: 41
interfaces:
- name: GigabitEthernet1
type: 1000base-t
- name: GigabitEthernet2
type: 1000base-t
- name: GigabitEthernet3
type: 1000base-t
- name: GigabitEthernet4
type: 1000base-t
- name: GigabitEthernet5
type: 1000base-t
- name: GigabitEthernet6
type: 1000base-t
- name: GigabitEthernet7
type: 1000base-t
- name: GigabitEthernet8
type: 1000base-t
- name: GigabitEthernet9
type: 1000base-t
- name: GigabitEthernet10
type: 1000base-t
- name: GigabitEthernet11
type: 1000base-t
- name: GigabitEthernet12
type: 1000base-t
- name: GigabitEthernet13
type: 1000base-t
- name: GigabitEthernet14
type: 1000base-t
- name: GigabitEthernet15
type: 1000base-t
- name: GigabitEthernet16
type: 1000base-t
- name: GigabitEthernet17
type: 1000base-t
- name: GigabitEthernet18
type: 1000base-t
- name: GigabitEthernet19
type: 1000base-t
- name: GigabitEthernet20
type: 1000base-t
- name: GigabitEthernet21
type: 1000base-t
- name: GigabitEthernet22
type: 1000base-t
- name: GigabitEthernet23
type: 1000base-t
- name: GigabitEthernet24
type: 1000base-t
- name: GigabitEthernet25
type: 1000base-t
- name: GigabitEthernet26
type: 1000base-t
- name: GigabitEthernet27
type: 1000base-t
- name: GigabitEthernet28
type: 1000base-t
- name: GigabitEthernet29
type: 1000base-t
- name: GigabitEthernet30
type: 1000base-t
- name: GigabitEthernet31
type: 1000base-t
- name: GigabitEthernet32
type: 1000base-t
- name: GigabitEthernet33
type: 1000base-t
- name: GigabitEthernet34
type: 1000base-t
- name: GigabitEthernet35
type: 1000base-t
- name: GigabitEthernet36
type: 1000base-t
- name: GigabitEthernet37
type: 1000base-t
- name: GigabitEthernet38
type: 1000base-t
- name: GigabitEthernet39
type: 1000base-t
- name: GigabitEthernet40
type: 1000base-t
- name: GigabitEthernet41
type: 1000base-t
- name: GigabitEthernet42
type: 1000base-t
- name: GigabitEthernet43
type: 1000base-t
- name: GigabitEthernet44
type: 1000base-t
- name: GigabitEthernet45
type: 1000base-t
- name: GigabitEthernet46
type: 1000base-t
- name: GigabitEthernet47
type: 1000base-t
- name: GigabitEthernet48
type: 1000base-t
- name: GigabitEthernet49
type: 1000base-x-sfp
- name: GigabitEthernet50
type: 1000base-x-sfp
- name: GigabitEthernet51
type: 1000base-x-sfp
- name: GigabitEthernet52
type: 1000base-x-sfp
- name: Port-Channel1
type: lag
- name: Port-Channel2
type: lag
- name: Port-Channel3
type: lag
- name: Port-Channel4
type: lag
- name: Port-Channel5
type: lag
- name: Port-Channel6
type: lag
- name: Port-Channel7
type: lag
- name: Port-Channel8
type: lag
- name: vlan 1
type: virtual

View File

@ -5,6 +5,9 @@ slug: cisco-sg500x-48-k9
part_number: SG500X-48-K9
u_height: 1
is_full_depth: false
front_image: true
weight: 4.01
weight_unit: kg
comments: '[SG500 series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/small-business-500-series-stackable-managed-switches/c78-695646_data_sheet.html)'
console-ports:
- name: console

View File

@ -5,6 +5,7 @@ slug: cisco-sg550x-24-k9
part_number: SG550X-24-K9
u_height: 1
is_full_depth: false
front_image: true
comments: '[SG550X Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/550x-series-stackable-managed-switches/datasheet-c78-735874.html)'
console-ports:
- name: console

View File

@ -5,6 +5,7 @@ slug: cisco-sg550x-24mp-k9
part_number: SG550X-24MP-K9
u_height: 1
is_full_depth: false
front_image: true
comments: '[SG550X Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/550x-series-stackable-managed-switches/datasheet-c78-735874.html)'
console-ports:
- name: con 0

View File

@ -5,6 +5,7 @@ slug: cisco-sg550x-48
part_number: SG550X-48-K9
u_height: 1
is_full_depth: false
front_image: true
comments: '[SG550X Series Datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/550x-series-stackable-managed-switches/datasheet-c78-735874.html)'
console-ports:
- name: con 0

View File

@ -0,0 +1,36 @@
---
manufacturer: Cisco
model: SMA M395
slug: cisco-sma-m395
part_number: SMA-M395
u_height: 1
is_full_depth: true
airflow: front-to-rear
console-ports:
- name: Console
type: rj-45
- name: RPC
type: rj-45
- name: usb1
type: usb-a
- name: usb2
type: usb-a
interfaces:
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: DATA1
type: 1000base-t
- name: DATA2
type: 1000base-t
- name: DATA3
type: 1000base-t
- name: DATA4
type: 1000base-t
- name: DATA5
type: 1000base-t
module-bays:
- name: PSU1
position: '1'
- name: PSU2
position: '2'

View File

@ -0,0 +1,120 @@
---
manufacturer: Cisco
model: SX550X-16FT
slug: cisco-sx550x-16ft
part_number: SX550X-16FT
u_height: 1
is_full_depth: false
weight: 3.8
weight_unit: kg
front_image: true
comments: '[SG500X series datasheet](https://www.cisco.com/c/en/us/products/collateral/switches/550x-series-stackable-managed-switches/datasheet-c78-735874.html)'
console-ports:
- name: console
type: de-9
power-ports:
- name: Power
type: iec-60320-c14
maximum_draw: 57
interfaces:
- name: GigabitEthernet1/1
type: 10gbase-t
- name: GigabitEthernet1/2
type: 10gbase-t
- name: GigabitEthernet1/3
type: 10gbase-t
- name: GigabitEthernet1/4
type: 10gbase-t
- name: GigabitEthernet1/5
type: 10gbase-t
- name: GigabitEthernet1/6
type: 10gbase-t
- name: GigabitEthernet1/7
type: 10gbase-t
- name: GigabitEthernet1/8
type: 10gbase-t
- name: GigabitEthernet1/9
type: 10gbase-x-sfpp
- name: GigabitEthernet1/10
type: 10gbase-x-sfpp
- name: GigabitEthernet1/11
type: 10gbase-x-sfpp
- name: GigabitEthernet1/12
type: 10gbase-x-sfpp
- name: GigabitEthernet1/13
type: 10gbase-x-sfpp
- name: GigabitEthernet1/14
type: 10gbase-x-sfpp
- name: GigabitEthernet1/15
type: 10gbase-x-sfpp
- name: GigabitEthernet1/16
type: 10gbase-x-sfpp
- name: oob
type: 1000base-t
management-only: true
- name: Port-channel1
type: lag
- name: Port-channel2
type: lag
- name: Port-channel3
type: lag
- name: Port-channel4
type: lag
- name: Port-channel5
type: lag
- name: Port-channel6
type: lag
- name: Port-channel7
type: lag
- name: Port-channel8
type: lag
- name: Port-channel9
type: lag
- name: Port-channel10
type: lag
- name: Port-channel11
type: lag
- name: Port-channel12
type: lag
- name: Port-channel13
type: lag
- name: Port-channel14
type: lag
- name: Port-channel15
type: lag
- name: Port-channel16
type: lag
- name: Port-channel17
type: lag
- name: Port-channel18
type: lag
- name: Port-channel19
type: lag
- name: Port-channel20
type: lag
- name: Port-channel21
type: lag
- name: Port-channel22
type: lag
- name: Port-channel23
type: lag
- name: Port-channel24
type: lag
- name: Port-channel25
type: lag
- name: Port-channel26
type: lag
- name: Port-channel27
type: lag
- name: Port-channel28
type: lag
- name: Port-channel29
type: lag
- name: Port-channel30
type: lag
- name: Port-channel31
type: lag
- name: Port-channel32
type: lag
- name: vlan1
type: virtual

View File

@ -0,0 +1,36 @@
---
manufacturer: Cisco
model: UCS-C240-M3L
slug: cisco-ucs-c240-m3l
part_number: UCS-C240M3L
u_height: 2
weight: 14.6
weight_unit: kg
airflow: front-to-rear
is_full_depth: true
console-ports:
- name: Console
type: rj-45
interfaces:
- name: Ethernet0
type: 1000base-t
- name: Ethernet1
type: 1000base-t
- name: Ethernet2
type: 1000base-t
- name: Ethernet3
type: 1000base-t
- name: CIMC
type: 1000base-t
mgmt_only: true
module-bays:
- name: PSU1
position: '0'
- name: PSU2
position: '1'
- name: RAID-Controller
position: '1'
- name: PCI-Slot1
position: '0'
- name: PCI-Slot2
position: '1'

View File

@ -0,0 +1,39 @@
---
manufacturer: Cisco
model: UCS C220 M5L
slug: cisco-ucs-c220-m5l
part_number: UCSC-C220-M5L
u_height: 1
airflow: front-to-rear
weight: 17.0
weight_unit: kg
is_full_depth: true
comments: '[Cisco UCS C220 M5 Server Large Form (Factor Disk Drive Model) Spec Sheet](https://www.cisco.com/c/dam/en/us/products/collateral/servers-unified-computing/ucs-c-series-rack-servers/c220m5-lff-specsheet.pdf)'
front_image: true
rear_image: true
console-ports:
- name: Console
label: IOIOI
type: rj-45
interfaces:
- name: Ethernet L/1
type: 10gbase-t
- name: Ethernet L/2
type: 10gbase-t
- name: CIMC
type: 1000base-t
label: o]
mgmt_only: true
module-bays:
- name: PSU1
position: '1'
- name: PSU2
position: '2'
- name: NUMA 0 - PCIe slot 1
position: PCIe-1
- name: NUMA 1 - PCIe slot 2
position: PCIe-2
- name: mRAID
position: mRAID
- name: mLOM
position: mLOM

View File

@ -4,14 +4,18 @@ model: UCS-C220-M5SX
slug: cisco-ucs-c220-m5sx
part_number: UCSC-C220-M5SX
u_height: 1
airflow: front-to-rear
weight: 10.13
weight_unit: kg
is_full_depth: true
comments: '[Cisco UCS C220 M5 Rack Server Data Sheet](https://www.cisco.com/c/en/us/products/collateral/servers-unified-computing/ucs-c-series-rack-servers/datasheet-c78-739281.html)'
console-ports:
- name: Console
type: rj-45
interfaces:
- name: enp94s0f0
- name: Ethernet L/1
type: 10gbase-t
- name: enp94s0f1
- name: Ethernet L/2
type: 10gbase-t
- name: CIMC
type: 1000base-t
@ -21,3 +25,11 @@ module-bays:
position: '1'
- name: PSU2
position: '2'
- name: NUMA 0 - PCIe slot 1
position: PCIe-1
- name: NUMA 1 - PCIe slot 2
position: PCIe-2
- name: mRAID
position: mRAID
- name: mLOM
position: mLOM

View File

@ -5,14 +5,17 @@ slug: cisco-ucs-c220-m6s
part_number: UCSC-C220-M6S
u_height: 1
airflow: front-to-rear
weight: 10.13
weight_unit: kg
is_full_depth: true
comments: '[Cisco UCS C220 M6 Rack Server Data Sheet](https://www.cisco.com/c/en/us/products/servers-unified-computing/ucs-c-series-rack-servers/ucs-c220-m6-rack-server-ds.html)'
console-ports:
- name: Console
type: rj-45
interfaces:
- name: Ethernet0
- name: Ethernet L/1
type: 10gbase-t
- name: Ethernet1
- name: Ethernet L/2
type: 10gbase-t
- name: CIMC
type: 1000base-t
@ -22,13 +25,13 @@ module-bays:
position: '1'
- name: PSU2
position: '2'
- name: PCIe.1
position: '1'
- name: PCIe.2
position: '2'
- name: PCIe.3
position: '3'
- name: RAID-Controller
position: '1'
- name: NUMA 0 - PCIe slot 1
position: PCIe-1
- name: NUMA 0 - PCIe slot 2
position: PCIe-2
- name: NUMA 1 - PCIe slot 3
position: PCIe-3
- name: mRAID
position: mRAID
- name: mLOM
position: '1'
position: mLOM

View File

@ -0,0 +1,37 @@
---
manufacturer: Cisco
model: UCS C220 M7S
slug: cisco-ucs-c220-m7s
part_number: UCSC-C220-M7S
u_height: 1.0
is_full_depth: true
airflow: front-to-rear
weight: 23.5
weight_unit: kg
front_image: true
rear_image: true
comments: '[Cisco UCS C220 M7 SFF Rack Server Spec Sheet](https://www.cisco.com/c/dam/en/us/products/collateral/servers-unified-computing/ucs-c-series-rack-servers/c220m7-sff-specsheet.pdf)'
console-ports:
- name: Console
type: rj-45
label: IOIOI
interfaces:
- name: CIMC
type: 1000base-t
mgmt_only: true
label: o]
module-bays:
- name: PCIe 01
position: '1'
- name: PCIe 02
position: '2'
- name: PCIe 03
position: '3'
- name: PS-0
position: '0'
- name: PS-1
position: '1'
- name: RAID-Controller
position: '1'
- name: mLOM
position: '1'

View File

@ -0,0 +1,46 @@
---
manufacturer: Cisco
model: UCS C240 M4SX
slug: cisco-ucsc-c240-m4sx
part_number: UCSC-C240-M4SX
u_height: 2
comments: '[Cisco UCS C240 M4 High-Density Rack Server (Small Form Factor Disk Drive Model) Data Sheet](https://www.cisco.com/c/dam/en/us/products/collateral/servers-unified-computing/ucs-c-series-rack-servers/c240m4-sff-spec-sheet.pdf)'
is_full_depth: true
front_image: true
rear_image: true
weight: 28.4
weight_unit: kg
console-ports:
- name: Console
label: IOIOI
type: rj-45
interfaces:
- name: Ethernet L/1
type: 1000base-t
- name: Ethernet L/2
type: 1000base-t
- name: CIMC
type: 1000base-t
label: o]
mgmt_only: true
module-bays:
- name: PSU 01
position: '1'
- name: PSU 02
position: '2'
- name: mRAID
position: mRAID
- name: mLOM
position: mLOM
- name: PCIe slot 1
position: PCIe-1
- name: PCIe slot 2
position: PCIe-2
- name: PCIe slot 3
position: PCIe-3
- name: PCIe slot 4
position: PCIe-4
- name: PCIe slot 5
position: PCIe-5
- name: PCIe slot 6
position: PCIe-6

View File

@ -0,0 +1,65 @@
---
manufacturer: Cisco
model: UCS C460 M4
slug: cisco-ucs-c460-m4
part_number: UCSC-C460-M4
u_height: 4
airflow: front-to-rear
weight: 64.4
weight_unit: kg
is_full_depth: true
comments: '[Cisco UCS C460 M4 High-Performance Rack-Mount Server Spec Sheet](https://www.cisco.com/c/dam/en/us/products/collateral/servers-unified-computing/ucs-c-series-rack-servers/c460m4_specsheet.pdf)'
front_image: true
rear_image: true
console-ports:
- name: Console
label: IOIOI
type: de-9
interfaces:
- name: Ethernet L1/1
type: 1000base-t
label: 1GE 1
- name: Ethernet L1/2
type: 1000base-t
label: 1GE 2
- name: Ethernet L2/1
type: 10gbase-t
label: 10GE 1
- name: Ethernet L2/2
type: 10gbase-t
label: 10GE 2
- name: CIMC
type: 1000base-t
label: M
mgmt_only: true
module-bays:
- name: PSU1
position: '1'
- name: PSU2
position: '2'
- name: PSU3
position: '3'
- name: PSU4
position: '4'
- name: PCIe slot 1
position: PCIe-1
- name: PCIe slot 2
position: PCIe-2
- name: PCIe slot 3
position: PCIe-3
- name: PCIe slot 4
position: PCIe-4
- name: PCIe slot 5
position: PCIe-5
- name: PCIe slot 6
position: PCIe-6
- name: PCIe slot 7
position: PCIe-7
- name: PCIe slot 8
position: PCIe-8
- name: PCIe slot 9
position: PCIe-9
- name: PCIe slot 10
position: PCIe-10
- name: mRAID
position: mRAID

View File

@ -4,6 +4,9 @@ model: Catalyst 3560-CX-12PC-S
slug: cisco-ws-c3560cx-12pc-s
part_number: WS-C3560CX-12PC-S
is_full_depth: false
is_powered: true
front_image: true
rear_image: true
u_height: 1
interfaces:
- name: GigabitEthernet1/0/1

View File

@ -5,6 +5,7 @@ slug: cisco-ws-c3560cx-12tc-s
part_number: WS-C3560CX-12TC-S
is_full_depth: false
u_height: 1
is_powered: true
interfaces:
- name: GigabitEthernet1/0/1
type: 1000base-t

View File

@ -5,6 +5,12 @@ slug: cisco-ws-c3850-24xs-s
part_number: WS-C3850-24XS-S
is_full_depth: false
u_height: 1
weight: 6.1
weight_unit: kg
front_image: true
rear_image: true
description: Cisco Catalyst 3850
comments: '[Cisco Catalyst 3850 Series Switches Data Sheet](https://www.cisco.com/c/en/us/products/collateral/switches/catalyst-3850-series-switches/datasheet_c78-720918.pdf)'
interfaces:
- name: GigabitEthernet0/0
type: 1000base-t

View File

@ -0,0 +1,35 @@
---
manufacturer: Cisco
model: WSA S195
slug: cisco-wsa-s195
part_number: WSA-S195
u_height: 1
is_full_depth: true
airflow: front-to-rear
console-ports:
- name: Console
type: rj-45
- name: RPC
type: rj-45
- name: usb1
type: usb-a
- name: usb2
type: usb-a
interfaces:
- name: M1
type: 1000base-t
- name: M2
type: 1000base-t
- name: P1
type: 1000base-t
- name: P2
type: 1000base-t
- name: T1
type: 1000base-t
- name: T2
type: 1000base-t
module-bays:
- name: PSU1
position: '1'
- name: PSU2
position: '2'

View File

@ -0,0 +1,32 @@
---
manufacturer: Corvil
model: CMC-5
slug: corvil-cmc-5
part_number: CMC-5
u_height: 1
weight: 55
weight_unit: lb
is_full_depth: true
interfaces:
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: mgmt2
type: 1000base-t
mgmt_only: true
- name: mgmt3
type: 1000base-t
mgmt_only: true
- name: mgmt4
type: 1000base-t
mgmt_only: true
- name: IPMI
type: 1000base-t
mgmt_only: true
power-ports:
- name: PSU1
type: iec-60320-c14
maximum_draw: 1300
- name: PSU2
type: iec-60320-c14
maximum_draw: 1300

View File

@ -0,0 +1,44 @@
---
manufacturer: Corvil
model: CNE-10000
slug: corvil-cne-10000
part_number: CNE-10000
u_height: 2
weight: 51
weight_unit: lb
is_full_depth: true
interfaces:
- name: PortA
type: 100gbase-x-qsfp28
mgmt_only: false
- name: PortB
type: 100gbase-x-qsfp28
mgmt_only: false
- name: mgmt-sfp-1
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt-sfp-2
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: mgmt2
type: 1000base-t
mgmt_only: true
- name: mgmt3
type: 1000base-t
mgmt_only: true
- name: mgmt4
type: 1000base-t
mgmt_only: true
- name: IPMI
type: 1000base-t
mgmt_only: true
power-ports:
- name: PSU1
type: iec-60320-c14
maximum_draw: 1600
- name: PSU2
type: iec-60320-c14
maximum_draw: 1600

View File

@ -0,0 +1,50 @@
---
manufacturer: Corvil
model: CNE-6950
slug: corvil-cne-6950
part_number: CNE-6950
u_height: 1
weight: 55
weight_unit: lb
is_full_depth: true
interfaces:
- name: PortA
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortB
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortC
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortD
type: 10gbase-x-sfpp
mgmt_only: false
- name: mgmt-sfp-1
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt-sfp-2
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: mgmt2
type: 1000base-t
mgmt_only: true
- name: mgmt3
type: 1000base-t
mgmt_only: true
- name: mgmt4
type: 1000base-t
mgmt_only: true
- name: IPMI
type: 1000base-t
mgmt_only: true
power-ports:
- name: PSU1
type: iec-60320-c14
maximum_draw: 1300
- name: PSU2
type: iec-60320-c14
maximum_draw: 1300

View File

@ -0,0 +1,50 @@
---
manufacturer: Corvil
model: CNE-7950
slug: corvil-cne-7950
part_number: CNE-7950
u_height: 2
weight: 77
weight_unit: lb
is_full_depth: true
interfaces:
- name: PortA
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortB
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortC
type: 10gbase-x-sfpp
mgmt_only: false
- name: PortD
type: 10gbase-x-sfpp
mgmt_only: false
- name: mgmt-sfp-1
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt-sfp-2
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: mgmt2
type: 1000base-t
mgmt_only: true
- name: mgmt3
type: 1000base-t
mgmt_only: true
- name: mgmt4
type: 1000base-t
mgmt_only: true
- name: IPMI
type: 1000base-t
mgmt_only: true
power-ports:
- name: PSU1
type: iec-60320-c14
maximum_draw: 1300
- name: PSU2
type: iec-60320-c14
maximum_draw: 1300

View File

@ -0,0 +1,44 @@
---
manufacturer: Corvil
model: CNE-8800
slug: corvil-cne-8800
part_number: CNE-8800
u_height: 2
weight: 77
weight_unit: lb
is_full_depth: true
interfaces:
- name: PortA
type: 100gbase-x-qsfp28
mgmt_only: false
- name: PortB
type: 100gbase-x-qsfp28
mgmt_only: false
- name: mgmt-sfp-1
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt-sfp-2
type: 10gbase-x-sfpp
mgmt_only: true
- name: mgmt
type: 1000base-t
mgmt_only: true
- name: mgmt2
type: 1000base-t
mgmt_only: true
- name: mgmt3
type: 1000base-t
mgmt_only: true
- name: mgmt4
type: 1000base-t
mgmt_only: true
- name: IPMI
type: 1000base-t
mgmt_only: true
power-ports:
- name: PSU1
type: iec-60320-c14
maximum_draw: 1600
- name: PSU2
type: iec-60320-c14
maximum_draw: 1600

View File

@ -0,0 +1,219 @@
---
manufacturer: DCN
model: S4600-52X-P-SI
part_number: S4600-52X-P-SI
slug: dcn-s4600-52x-p-si
u_height: 1
is_full_depth: true
weight: 3
weight_unit: kg
airflow: front-to-rear
comments: '[DCN S4600 Series Switches Data Sheet](https://www.dcneurope.eu/en/product-switches/s4600-52x-si)'
console-ports:
- name: con 0
type: rj-45
interfaces:
- name: Ethernet1/0/1
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/2
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/3
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/4
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/5
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/6
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/7
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/8
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/9
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/10
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/11
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/12
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/13
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/14
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/15
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/16
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/17
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/18
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/19
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/20
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/21
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/22
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/23
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/24
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/25
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/26
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/27
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/28
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/29
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/30
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/31
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/32
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/33
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/34
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/35
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/36
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/37
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/38
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/39
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/40
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/41
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/42
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/43
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/44
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/45
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/46
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/47
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/48
type: 1000base-t
poe_mode: pse
poe_type: type2-ieee802.3at
- name: Ethernet1/0/49
type: 10gbase-x-sfpp
- name: Ethernet1/0/50
type: 10gbase-x-sfpp
- name: Ethernet1/0/51
type: 10gbase-x-sfpp
- name: Ethernet1/0/52
type: 10gbase-x-sfpp
power-ports:
- name: PSU0
type: iec-60320-c14
maximum_draw: 897

View File

@ -7,7 +7,7 @@ u_height: 1.0
is_full_depth: true
airflow: side-to-rear
comments: Manageable L2/L3 wirespeed Ethernet Switch, 24x 10Gigabit Ethernet optical ports (SFP+) and 2x 40 Gigabit Ethernet optical ports (QSFP+), Metal
1U cabinet for 19 racks. Up to two AC or DC power supplies (not included)
1U cabinet for 19\" racks. Up to two AC or DC power supplies (not included)
weight: 3.15
weight_unit: kg
console-ports:

View File

@ -7,7 +7,7 @@ u_height: 1.0
is_full_depth: true
airflow: side-to-rear
comments: L2/L3/MPLS switch, wire speed, with 48 10 GE optical ports on SFP+ connectors and 6 optical ports multi-rate 100GE/40GE on QSFP28 connectors.
1U metal cabinet for 19 rack with 4 ventilation modules. MPLS license and power supplies and optical modules must be purchased separately
1U metal cabinet for 19\" rack with 4 ventilation modules. MPLS license and power supplies and optical modules must be purchased separately
weight: 6.28
weight_unit: kg
console-ports:

View File

@ -5,7 +5,7 @@ slug: datacom-dm4610-olt-4gpon-4gx-2xs
u_height: 1.0
is_full_depth: true
airflow: side-to-rear
comments: GPON OLT for 19 rack installation, containing 4 GPON interfaces, 4 optical GE SFP interfaces and 2 10GE/GE SFP+ interfaces. Removable ventilation
comments: GPON OLT for 19\" rack installation, containing 4 GPON interfaces, 4 optical GE SFP interfaces and 2 10GE/GE SFP+ interfaces. Removable ventilation
system and two slots for redundant and hot swappable AC or DC power supplies.
weight: 3.44
weight_unit: kg

View File

@ -6,8 +6,8 @@ part_number: 800.5165.xx
u_height: 1.0
is_full_depth: true
airflow: side-to-rear
comments: GPON OLT for 19 rack installation, containing 8 GPON interfaces, 8 optical GE SFP interfaces, 4 electrical GE RJ45 interfaces and 2 10GE/GE SFP+
interfaces. Removable ventilation system and two slots for redundant and hot swappable AC or DC power supplies.
comments: GPON OLT for 19\" rack installation, containing 8 GPON interfaces, 8 optical GE SFP interfaces, 4 electrical GE RJ45 interfaces and 2 10GE/GE
SFP+ interfaces. Removable ventilation system and two slots for redundant and hot swappable AC or DC power supplies.
weight: 3.44
weight_unit: kg
console-ports:

Some files were not shown because too many files have changed in this diff Show More