Merge branch 'master' into SSE-X3348TR

This commit is contained in:
Ryan Merolle 2024-11-08 21:47:09 -05:00 committed by GitHub
commit 5d7f063cda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
168 changed files with 2522 additions and 213 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

@ -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

@ -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,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

@ -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

@ -7,7 +7,7 @@ u_height: 1.0
is_full_depth: false
airflow: passive
front_image: true
comments: '[Cisco Business 350 Series Managed Switches](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: 1.78
weight_unit: kg
console-ports:

View File

@ -3,7 +3,7 @@ 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

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

@ -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

@ -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

@ -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,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

@ -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

@ -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

@ -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:

View File

@ -6,7 +6,7 @@ part_number: 800.5283.xx
u_height: 1.0
is_full_depth: false
airflow: left-to-right
comments: GPON OLT for desktop or 19 rack installation, containing 4 GPON interfaces, 2 electrical GE RJ45 interfaces and 2 10GE/GE SFP+ interfaces. Internal
comments: GPON OLT for desktop or 19\" rack installation, containing 4 GPON interfaces, 2 electrical GE RJ45 interfaces and 2 10GE/GE SFP+ interfaces. Internal
full range AC/DC power supply and power redundancy option through 12V auxiliary input.
weight: 2.47
weight_unit: kg

View File

@ -2,22 +2,62 @@
manufacturer: Dell
model: PowerEdge MX7000
slug: dell-poweredge-mx7000
u_height: 7
part_number: '5112814'
u_height: 7.0
is_full_depth: true
subdevice_role: parent
airflow: front-to-rear
weight: 105.0
weight_unit: lb
comments: '[Product Page](https://www.dell.com/en-us/shop/ipovw/poweredge-mx7000)'
power-ports:
- name: PSU.IN.1
type: iec-60320-c22
max_draw: 3000
label: '1'
- name: PSU.IN.2
type: iec-60320-c22
max_draw: 3000
label: '2'
- name: PSU.IN.3
type: iec-60320-c22
max_draw: 3000
label: '3'
- name: PSU.IN.4
type: iec-60320-c22
max_draw: 3000
label: '4'
- name: PSU.IN.5
type: iec-60320-c22
max_draw: 3000
label: '5'
- name: PSU.IN.6
type: iec-60320-c22
max_draw: 3000
label: '6'
module-bays:
- name: IOM-A1
position: A1
- name: IOM-A2
position: A2
- name: IOM-B1
position: B1
- name: IOM-B2
position: B2
- name: IOM-C1
position: C1
- name: IOM-C2
position: C2
- name: MM-1
position: MM-1
- name: MM-2
position: MM-2
- name: PSU.Slot.1
type: iec-60320-c22
- name: PSU.Slot.2
type: iec-60320-c22
- name: PSU.Slot.3
type: iec-60320-c22
- name: PSU.Slot.4
type: iec-60320-c22
- name: PSU.Slot.5
type: iec-60320-c22
- name: PSU.Slot.6
type: iec-60320-c22
device-bays:
- name: Sled-1
- name: Sled-2
@ -27,11 +67,3 @@ device-bays:
- name: Sled-6
- name: Sled-7
- name: Sled-8
- name: IOM-A1
- name: IOM-A2
- name: IOM-B1
- name: IOM-B2
- name: IOM-C1
- name: IOM-C2
- name: MM Slot 1
- name: MM Slot 2

View File

@ -0,0 +1,234 @@
---
manufacturer: Dell
model: PowerSwitch N3248P-ON
slug: dell-powerswitch-n3248p-on
part_number: N3248P-ON
u_height: 1
is_full_depth: true
airflow: front-to-rear
front_image: true
rear_image: true
comments: '[dell-networking-n3200-series-spec-sheet.pdf](https://www.delltechnologies.com/asset/en-au/products/networking/technical-support/dell-networking-n3200-powerswitch-specsheet.pdf)'
weight: 7.57
weight_unit: kg
is_powered: true
console-ports:
- name: Console
type: usb-micro-b
- name: Serial
type: rj-45
interfaces:
- name: out-of-band
type: 1000base-t
mgmt_only: true
- name: Gi1/0/1
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/2
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/3
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/4
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/5
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/6
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/7
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/8
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/9
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/10
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/11
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/12
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/13
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/14
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/15
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/16
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/17
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/18
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/19
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/20
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/21
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/22
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/23
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/24
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/25
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/26
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/27
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/28
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/29
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/30
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/31
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/32
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/33
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/34
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/35
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/36
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/37
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/38
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/39
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/40
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/41
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/42
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/43
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/44
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/45
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/46
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/47
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Gi1/0/48
type: 1000base-t
poe-mode: pse
poe-type: type2-ieee802.3at
- name: Te1/0/1
type: 10gbase-x-sfpp
- name: Te1/0/2
type: 10gbase-x-sfpp
- name: Te1/0/3
type: 10gbase-x-sfpp
- name: Te1/0/4
type: 10gbase-x-sfpp
- name: Hu1/0/1
type: 100gbase-x-qsfp28
- name: Hu1/0/2
type: 100gbase-x-qsfp28
module-bays:
- name: '1'
label: PSU Slot 1
position: '1'
- name: '2'
label: PSU Slot 2
position: '2'

View File

@ -0,0 +1,90 @@
---
manufacturer: Dell
model: PowerSwitch S4128F-ON
slug: dell-powerswitch-s4128f-on
part_number: S4128F-ON
u_height: 1
is_full_depth: true
airflow: front-to-rear
front_image: true
rear_image: true
comments: '[dell-networking-s4100-series-spec-sheet.pdf](https://www.delltechnologies.com/asset/en-us/products/networking/technical-support/dell-networking-s4100-series-spec-sheet.pdf)'
weight: 8.92
weight_unit: kg
is_powered: true
console-ports:
- name: Console
type: usb-micro-b
- name: Serial
type: rj-45
interfaces:
- name: mgmt1/1/1
type: 1000base-t
mgmt_only: true
- name: ethernet1/1/1
type: 10gbase-x-sfpp
- name: ethernet1/1/2
type: 10gbase-x-sfpp
- name: ethernet1/1/3
type: 10gbase-x-sfpp
- name: ethernet1/1/4
type: 10gbase-x-sfpp
- name: ethernet1/1/5
type: 10gbase-x-sfpp
- name: ethernet1/1/6
type: 10gbase-x-sfpp
- name: ethernet1/1/7
type: 10gbase-x-sfpp
- name: ethernet1/1/8
type: 10gbase-x-sfpp
- name: ethernet1/1/9
type: 10gbase-x-sfpp
- name: ethernet1/1/10
type: 10gbase-x-sfpp
- name: ethernet1/1/11
type: 10gbase-x-sfpp
- name: ethernet1/1/12
type: 10gbase-x-sfpp
- name: ethernet1/1/13
type: 10gbase-x-sfpp
- name: ethernet1/1/14
type: 10gbase-x-sfpp
- name: ethernet1/1/15
type: 10gbase-x-sfpp
- name: ethernet1/1/16
type: 10gbase-x-sfpp
- name: ethernet1/1/17
type: 10gbase-x-sfpp
- name: ethernet1/1/18
type: 10gbase-x-sfpp
- name: ethernet1/1/19
type: 10gbase-x-sfpp
- name: ethernet1/1/20
type: 10gbase-x-sfpp
- name: ethernet1/1/21
type: 10gbase-x-sfpp
- name: ethernet1/1/22
type: 10gbase-x-sfpp
- name: ethernet1/1/23
type: 10gbase-x-sfpp
- name: ethernet1/1/24
type: 10gbase-x-sfpp
- name: ethernet1/1/25
type: 100gbase-x-qsfp28
- name: ethernet1/1/26
type: 100gbase-x-qsfp28
- name: ethernet1/1/27
type: 10gbase-x-sfpp
- name: ethernet1/1/28
type: 10gbase-x-sfpp
- name: ethernet1/1/29
type: 10gbase-x-sfpp
- name: ethernet1/1/30
type: 10gbase-x-sfpp
module-bays:
- name: '1'
label: PSU Slot 1
position: '1'
- name: '2'
label: PSU Slot 2
position: '2'

View File

@ -10,7 +10,7 @@ rear_image: true
airflow: side-to-rear
weight: 3.3
weight_unit: kg
description: Internal Storage 1x 480 GB SSD
description: Internal Storage - 1x 480 GB SSD
comments: '[FortiGate 100E Series Datasheet](https://www.fortinet.com/content/dam/fortinet/assets/data-sheets/FortiGate_100E_Series.pdf)'
interfaces:
- name: dmz

View File

@ -1,6 +1,6 @@
---
manufacturer: Fortinet
model: FortiSwitch 148FPOE
model: FortiSwitch 148F-POE
slug: fortinet-fs-148f-poe
part_number: FS-148F-POE
u_height: 1

View File

@ -3,7 +3,7 @@ manufacturer: HPE
model: ProLiant XL170r G9 (1U)
slug: hpe-proliant-xl170r-g9-1u
part_number: 798155-B21
u_height: 0.0
u_height: 1.0
is_full_depth: true
subdevice_role: child
airflow: front-to-rear

View File

@ -3,7 +3,7 @@ manufacturer: HPE
model: ProLiant XL170r G9 (2U)
slug: hpe-proliant-xl170r-g9-2u
part_number: 798156-B21
u_height: 0.0
u_height: 2.0
is_full_depth: true
subdevice_role: child
airflow: front-to-rear

View File

@ -1,7 +1,7 @@
---
manufacturer: Hikvision
model: DS-7632NI-I2/16P
slug: hikvision-ds-7632ni-i2-165
slug: hikvision-ds-7632ni-i2-16p
u_height: 1.5
is_full_depth: false
airflow: side-to-rear

View File

@ -1,14 +1,17 @@
---
manufacturer: Infoblox
model: IB-1410
slug: infoblox-ib-1410
model: TE-1410
slug: infoblox-te-1410
part_number: TE-1410
is_full_depth: false
u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2

View File

@ -1,14 +1,17 @@
---
manufacturer: Infoblox
model: TE-1415-NS1GD-AC
slug: infoblox-te-1415-ns1gd-ac
model: TE-1415
slug: infoblox-te-1415
part_number: TE-1415
is_full_depth: false
u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2

View File

@ -1,14 +1,17 @@
---
manufacturer: Infoblox
model: IB-1420
slug: infoblox-ib-1420
model: TE-1420
slug: infoblox-te-1420
part_number: TE-1420
is_full_depth: false
u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2

View File

@ -0,0 +1,30 @@
---
manufacturer: Infoblox
model: TE-1425
slug: infoblox-te-1425
part_number: TE-1425
is_full_depth: false
u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2
type: 1000base-t
- name: HA
type: 1000base-t
console-ports:
- name: Console
type: rj-45
power-ports:
- name: PS0
type: iec-60320-c14
maximum_draw: 450
- name: PS1
type: iec-60320-c14
maximum_draw: 450

View File

@ -1,14 +1,17 @@
---
manufacturer: Infoblox
model: IB-2220
slug: infoblox-ib-2220
model: TE-2220
slug: infoblox-te-2220
part_number: TE-2220
is_full_depth: false
u_height: 2
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2

View File

@ -1,8 +1,8 @@
---
manufacturer: Infoblox
model: Trinzic TE-805
slug: infoblox-te-805-hw-ac-b
part_number: TE-805-HW-AC-B
model: TE-805
slug: infoblox-te-805
part_number: TE-805-HW
u_height: 1
is_full_depth: true
comments: Trinzic TE-805 Network Management Device with HDD & PSU

View File

@ -1,14 +1,16 @@
---
manufacturer: Infoblox
model: TE-815-NS1GD-AC
slug: infoblox-te-815-ns1gd-ac
model: TE-815
slug: infoblox-te-815
is_full_depth: false
u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: LAN2

View File

@ -1,8 +1,8 @@
---
manufacturer: Infoblox
model: IB-825
slug: infoblox-ib-825
part_number: TE-805-HW-AC
model: TE-825
slug: infoblox-te-825
part_number: TE-825
weight: 17
weight_unit: lb
airflow: front-to-rear
@ -11,8 +11,10 @@ u_height: 1
interfaces:
- name: LOM
type: 1000base-t
mgmt_only: true
- name: MGMT
type: 1000base-t
mgmt_only: true
- name: LAN1
type: 1000base-t
- name: HA

View File

@ -1,7 +1,7 @@
---
manufacturer: Intel
model: NUC8i3BEK3
slug: intel-nuc8iebek3
slug: intel-nuc8i3bek3
u_height: 0
is_full_depth: false
airflow: passive

View File

@ -1,7 +1,7 @@
---
manufacturer: Ivanti
model: PulseSecure PSA300
slug: ivanti-pulse-secure-psa300
slug: ivanti-pulsesecure-psa300
part_number: PSA300
u_height: 0
is_full_depth: false

View File

@ -1,7 +1,7 @@
---
manufacturer: Ivanti
model: PulseSecure PSA3000
slug: ivanti-pulse-secure-psa3000
slug: ivanti-pulsesecure-psa3000
part_number: PSA3000
u_height: 1
is_full_depth: false

View File

@ -1,7 +1,7 @@
---
manufacturer: Ivanti
model: PulseSecure PSA5000
slug: ivanti-pulse-secure-psa5000
slug: ivanti-pulsesecure-psa5000
part_number: PSA5000
u_height: 1
is_full_depth: false

View File

@ -1,7 +1,7 @@
---
manufacturer: Ivanti
model: PulseSecure PSA7000c
slug: ivanti-pulse-secure-psa7000c
slug: ivanti-pulsesecure-psa7000c
part_number: PSA7000c
u_height: 2
is_full_depth: true

View File

@ -1,7 +1,7 @@
---
manufacturer: Ivanti
model: PulseSecure PSA7000f
slug: ivanti-pulse-secure-psa7000f
slug: ivanti-pulsesecure-psa7000f
part_number: PSA7000f
u_height: 2
is_full_depth: true

View File

@ -0,0 +1,54 @@
---
manufacturer: Lantronix
model: ETS16PR
slug: lantronix-ets16pr
part_number: ETS16PR
u_height: 1
front_image: true
weight: 1.6
weight_unit: kg
interfaces:
- name: 10/100
type: 100base-tx
mgmt_only: true
- name: AUI
type: other
mgmt_only: true
console-server-ports:
- name: Serial 1
type: rj-45
- name: Serial 2
type: rj-45
- name: Serial 3
type: rj-45
- name: Serial 4
type: rj-45
- name: Serial 5
type: rj-45
- name: Serial 6
type: rj-45
- name: Serial 7
type: rj-45
- name: Serial 8
type: rj-45
- name: Serial 9
type: rj-45
- name: Serial 10
type: rj-45
- name: Serial 11
type: rj-45
- name: Serial 12
type: rj-45
- name: Serial 13
type: rj-45
- name: Serial 14
type: rj-45
- name: Serial 15
type: rj-45
- name: Serial 16
type: rj-45
power-ports:
- name: Power
type: iec-60320-c14
maximum_draw: 30

View File

@ -0,0 +1,86 @@
---
manufacturer: Lantronix
model: ETS32PR
slug: lantronix-ets32pr
part_number: ETS32PR
u_height: 2
front_image: true
weight: 3.64
weight_unit: kg
interfaces:
- name: 10/100
type: 100base-tx
mgmt_only: true
- name: AUI
type: other
mgmt_only: true
console-server-ports:
- name: Serial 1
type: rj-45
- name: Serial 2
type: rj-45
- name: Serial 3
type: rj-45
- name: Serial 4
type: rj-45
- name: Serial 5
type: rj-45
- name: Serial 6
type: rj-45
- name: Serial 7
type: rj-45
- name: Serial 8
type: rj-45
- name: Serial 9
type: rj-45
- name: Serial 10
type: rj-45
- name: Serial 11
type: rj-45
- name: Serial 12
type: rj-45
- name: Serial 13
type: rj-45
- name: Serial 14
type: rj-45
- name: Serial 15
type: rj-45
- name: Serial 16
type: rj-45
- name: Serial 17
type: rj-45
- name: Serial 18
type: rj-45
- name: Serial 19
type: rj-45
- name: Serial 20
type: rj-45
- name: Serial 21
type: rj-45
- name: Serial 22
type: rj-45
- name: Serial 23
type: rj-45
- name: Serial 24
type: rj-45
- name: Serial 25
type: rj-45
- name: Serial 26
type: rj-45
- name: Serial 27
type: rj-45
- name: Serial 28
type: rj-45
- name: Serial 29
type: rj-45
- name: Serial 30
type: rj-45
- name: Serial 31
type: rj-45
- name: Serial 32
type: rj-45
power-ports:
- name: Power
type: iec-60320-c14
maximum_draw: 40

View File

@ -3,7 +3,7 @@ manufacturer: MikroTik
model: CRS310-1G-5S-4S+IN
slug: mikrotik-crs310-1g-5s-4s-plus-in
part_number: CRS310-1G-5S-4S+
comments: 10 Gigabit fibre connectivity way over a 100 meters for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing
comments: 10 Gigabit fibre connectivity way over a 100 meters - for small offices or ISPs. Hardware offloaded VLAN-filtering and even some L3 routing
is_full_depth: false
u_height: 1
interfaces:

View File

@ -11,7 +11,7 @@ comments: |
Our top-of-the-line switch with incredible 2.5 Gigabit port density,
combo ports, and even a pair of 40 Gbps QSFP+ cages. Enterprise-level
gamechanger for the price of a smartphone!
gamechanger... for the price of a smartphone!
Note: The combo ports can run in either mode of (F) 10G (SFP+) or
(T) 2.5GBASE-T (2.5GE) mode.

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe M5300-28G-POE+ (GSM7228PS)
slug: netgear-prosafe-gsm7228ps
part_number: GSM7228PS
comments: '[GSM7228PS ProSAFE 28-Port-L2-Managed-Stackable-Gigabit-Ethernet-Switch with PoE](https://netgear.de/support/product/gsm7228ps#docs)'
comments: '[GSM7228PS - ProSAFE 28-Port-L2-Managed-Stackable-Gigabit-Ethernet-Switch with PoE](https://netgear.de/support/product/gsm7228ps#docs)'
u_height: 1
weight: 6.3
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe M5300-28G (GSM7228S)
slug: netgear-prosafe-gsm7228s
part_number: GSM7228S
comments: '[M5300-28G (GSM7228S) ProSAFE 24-Port-L2+-Managed-Stackable-Gigabit-Switch](https://netgear.de/support/product/m5300-28g%20(gsm7228s)#docs)'
comments: '[M5300-28G (GSM7228S) - ProSAFE 24-Port-L2+-Managed-Stackable-Gigabit-Switch](https://netgear.de/support/product/m5300-28g%20(gsm7228s)#docs)'
u_height: 1
weight: 6.3
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe M5300-52G-POE+ (GSM7252PS)
slug: netgear-prosafe-gsm7252ps
part_number: GSM7252PS
comments: '[GSM7252PS ProSAFE 52-Port-L2-Managed-Stackable-Gigabit-Ethernet-Switch with PoE](https://netgear.de/support/product/gsm7252ps#docs)'
comments: '[GSM7252PS - ProSAFE 52-Port-L2-Managed-Stackable-Gigabit-Ethernet-Switch with PoE](https://netgear.de/support/product/gsm7252ps#docs)'
u_height: 1
weight: 6.8
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe M5300-52G (GSM7252S)
slug: netgear-prosafe-gsm7252s
part_number: GSM7252S
comments: '[M5300-52G (GSM7252S) ProSAFE 48-Port-L2+-Managed-Stackable-Gigabit-Switch](https://netgear.de/support/product/m5300-52g%20(gsm7252s)#docs)'
comments: '[M5300-52G (GSM7252S) - ProSAFE 48-Port-L2+-Managed-Stackable-Gigabit-Switch](https://netgear.de/support/product/m5300-52g%20(gsm7252s)#docs)'
u_height: 1
weight: 6.8
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe GSM7328FS
slug: netgear-prosafe-gsm7328fs
part_number: GSM7328FS
comments: '[GSM7328FS ProSAFE L3-Managed-Stackable-Switch (24 SFP, 4 GbE)](https://netgear.de/support/product/gsm7328fs#docs)'
comments: '[GSM7328FS - ProSAFE L3-Managed-Stackable-Switch (24 SFP, 4 GbE)](https://netgear.de/support/product/gsm7328fs#docs)'
u_height: 1
weight: 5.4
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe GSM7328Sv1
slug: netgear-prosafe-gsm7328sv1
part_number: GSM7328Sv1
comments: '[GSM7328Sv1 ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (24+4)](https://netgear.de/support/product/gsm7328sv1#docs)'
comments: '[GSM7328Sv1 - ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (24+4)](https://netgear.de/support/product/gsm7328sv1#docs)'
u_height: 1
weight: 4.5
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe GSM7328Sv2
slug: netgear-prosafe-gsm7328sv2
part_number: GSM7328Sv2
comments: '[GSM7328Sv2 ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (24+4)](https://netgear.de/support/product/gsm7328sv2#docs)'
comments: '[GSM7328Sv2 - ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (24+4)](https://netgear.de/support/product/gsm7328sv2#docs)'
u_height: 1
weight: 4.5
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe GSM7352Sv1
slug: netgear-prosafe-gsm7352sv1
part_number: GSM7352Sv1
comments: '[GSM7352Sv1 ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (48+4)](https://netgear.de/support/product/gsm7352sv1)'
comments: '[GSM7352Sv1 - ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (48+4)](https://netgear.de/support/product/gsm7352sv1)'
u_height: 1
weight: 5.4
weight_unit: kg

View File

@ -3,7 +3,7 @@ manufacturer: Netgear
model: ProSafe GSM7352Sv2
slug: netgear-prosafe-gsm7352sv2
part_number: GSM7352Sv2
comments: '[GSM7352Sv2 ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (48+4)](https://netgear.de/support/product/gsm7352sv2)'
comments: '[GSM7352Sv2 - ProSAFE L3-Managed-Stackable-Gigabit-Ethernet-Switch (48+4)](https://netgear.de/support/product/gsm7352sv2)'
u_height: 1
weight: 5.4
weight_unit: kg

View File

@ -3,6 +3,8 @@ manufacturer: PC Engines
model: APU
slug: pc-engines-apu1
part_number: apu1
u_height: 0.5
is_full_depth: false
comments: |
Dimensions: 168 x 157 x 30 mm (6.61 x 6.18 x 1.18")
interfaces:

View File

@ -3,7 +3,7 @@ manufacturer: PC Engines
model: APU2
slug: pc-engines-apu2
part_number: apu2
u_height: 1
u_height: 0.5
is_full_depth: false
comments: |
Dimensions: 168 x 157 x 30 mm (6.61 x 6.18 x 1.18")

View File

@ -3,6 +3,8 @@ manufacturer: PC Engines
model: APU4
slug: pc-engines-apu4
part_number: apu4
u_height: 0.5
is_full_depth: false
comments: |
Dimensions: 168 x 157 x 30 mm (6.61 x 6.18 x 1.18")
interfaces:

View File

@ -3,7 +3,7 @@ manufacturer: PC Engines
model: APU6
slug: pc-engines-apu6
part_number: apu6
u_height: 0.0
u_height: 0.5
is_full_depth: false
airflow: passive
weight: 16.00

View File

@ -5,7 +5,7 @@ slug: schneider-electric-spacelogic-as-p-nl
part_number: SXWASPXXX10002
is_full_depth: false
u_height: 0
comments: '[SpaceLogic AS-P-NL Hardware Installation](https://ecostruxure-building-help.se.com/bms/Topics/Show.castle?id=13809)'
comments: '[SpaceLogic AS-P-NL Hardware Installation](https://ecostruxure-building-help.se.com/bms/Topics/Show.castle?id=13809)'
weight_unit: g
weight: 321
airflow: passive

View File

@ -1,7 +1,7 @@
---
manufacturer: Schweitzer Engineering Laboratories
model: SEL-451-6 SV
slug: schweitzer-engineering-laboratories-351a-6-sv
slug: schweitzer-engineering-laboratories-sel-451-6-sv
u_height: 4
is_full_depth: false
is_powered: true
@ -34,4 +34,4 @@ interfaces:
power-ports:
- name: power
type: hardwired
description: 2448 Vdc; 48125 Vdc or 110120 Vac; or 125250 Vdc or 110240 Vac.
description: 24-48 Vdc; 48-125 Vdc or 110-120 Vac; or 125-250 Vdc or 110-240 Vac.

View File

@ -1,7 +1,7 @@
---
manufacturer: Schweitzer Engineering Laboratories
model: SEL-451-6 TiDL
slug: schweitzer-engineering-laboratories-351a-5-tidl
slug: schweitzer-engineering-laboratories-sel-451-6-tidl
u_height: 4
is_full_depth: false
is_powered: true
@ -60,4 +60,4 @@ interfaces:
power-ports:
- name: power
type: hardwired
description: 2448 Vdc; 48125 Vdc or 110120 Vac; or 125250 Vdc or 110240 Vac.
description: 24-48 Vdc; 48-125 Vdc or 110-120 Vac; or 125-250 Vdc or 110-240 Vac.

View File

@ -1,7 +1,7 @@
---
manufacturer: Schweitzer Engineering Laboratories
model: SEL-2242 10-bay Chassis/Backplane
slug: schweitzer-engineering-laboratories-2242-10-bay-chassis-backplane
slug: schweitzer-engineering-laboratories-sel-2242-10-bay-chassis-backplane
description: The SEL-2242 10-bay Chassis/Backplane is a 10-slot chassis for SEL Axion systems
u_height: 2
is_full_depth: false

View File

@ -1,7 +1,7 @@
---
manufacturer: Schweitzer Engineering Laboratories
model: SEL-2242 4-bay Chassis/Backplane
slug: schweitzer-engineering-laboratories-2242-4-bay-chassis-backplane
slug: schweitzer-engineering-laboratories-sel-2242-4-bay-chassis-backplane
description: The SEL-2242 4-bay Chassis/Backplane is a 4-slot chassis for SEL Axion systems
u_height: 2
is_full_depth: false

View File

@ -1,7 +1,7 @@
---
manufacturer: Schweitzer Engineering Laboratories
model: SEL-451-5 Relay
slug: schweitzer-engineering-laboratories-351a-r-relay
slug: schweitzer-engineering-laboratories-sel-451-5-relay
u_height: 2
is_full_depth: false
is_powered: true
@ -27,4 +27,4 @@ interfaces:
power-ports:
- name: power
type: hardwired
description: 2448 Vdc; 48125 Vdc or 110120 Vac; or 125250 Vdc or 110240 Vac.
description: 24-48 Vdc; 48-125 Vdc or 110-120 Vac; or 125-250 Vdc or 110-240 Vac.

View File

@ -0,0 +1,19 @@
---
manufacturer: Siemon
model: RIC3-24-01
slug: siemon-ric3-24-01
part_number: RIC3-24-01
u_height: 2
is_full_depth: false
subdevice_role: parent
airflow: passive
comments: Siemon Rack Mount Interconnect Center 2-RU Fiber-Optic Housing with (4) module bays for Siemon Quick-Pack adapter plates.
module-bays:
- name: A
position: A
- name: B
position: B
- name: C
position: C
- name: D
position: D

View File

@ -0,0 +1,21 @@
---
manufacturer: Sophos
model: AP6 420E
slug: sophos-ap6-420e
part_number: AP6 420E
airflow: passive
front_image: false
rear_image: false
u_height: 0
weight: 0.7
weight_unit: kg
console-ports:
- name: COM USB
type: usb-micro-b
interfaces:
- name: LAN
type: 2.5gbase-t
poe_mode: pd
poe_type: type2-ieee802.3at
- name: WiFi
type: ieee802.11ax

View File

@ -0,0 +1,21 @@
---
manufacturer: Sophos
model: APX320
slug: sophos-apx320
part_number: APX320
airflow: passive
front_image: false
rear_image: false
u_height: 0
weight: 0.5
weight_unit: kg
console-ports:
- name: Console
type: rj-45
interfaces:
- name: ETH0/POE
type: 1000base-t
poe_mode: pd
poe_type: type1-ieee802.3af
- name: WiFi
type: ieee802.11ac

View File

@ -0,0 +1,23 @@
---
manufacturer: Sophos
model: APX530
slug: sophos-apx530
part_number: APX530
airflow: passive
front_image: false
rear_image: false
u_height: 0
weight: 0.9
weight_unit: kg
console-ports:
- name: Console
type: rj-45
interfaces:
- name: ETH0/POE
type: 1000base-t
poe_mode: pd
poe_type: type2-ieee802.3at
- name: ETH1
type: 1000base-t
- name: WiFi
type: ieee802.11ac

View File

@ -2,6 +2,8 @@
manufacturer: Supermicro
model: AS-1114S-WN10RT
slug: supermicro-as-1114s-wn10rt
part_number: AS-1114S-WN10RT
comments: '[MNL-2295.pdf](https://www.supermicro.com/manuals/superserver/1U/MNL-2295.pdf)'
u_height: 1
is_full_depth: true
console-ports:
@ -13,8 +15,11 @@ power-ports:
- name: Power 2
type: iec-60320-c14
interfaces:
- name: Gig-E 1
type: 1000base-t
- name: Gig-E 2
- name: BMC
type: 1000base-t
mgmt_only: true
description: Dedicated IPMI LAN port
- name: Gig-E 1
type: 10gbase-t
- name: Gig-E 2
type: 10gbase-t

View File

@ -23,11 +23,13 @@ module-bays:
position: PSU 2
- name: PCI-E 1
position: '1'
description: Occupied by 3808 SAS controller
description: 1 PCIe 4.0 x8 LP slot (Occupied by 3808 SAS controller)
- name: PCI-E 2
position: '2'
description: PCIe 4.0 x16 LP slot
- name: PCI-E 3
position: '3'
description: PCIe 4.0 x16 LP slot
- name: PCI-E A1
position: A1
description: Supermicro® Advanced I/O Module
position: '4'
description: PCIe 4.0 x16 AIOM slot (OCP 3.0 compatible)

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