Update AGENTS.md
This commit is contained in:
@@ -420,23 +420,22 @@ Triggered by clicking any port indicator dot on applicable modules.
|
||||
- Inline VLAN quick-create (add new VLAN ID + name without leaving modal)
|
||||
- Save / Cancel
|
||||
|
||||
**Devices with interactive ports:** `SWITCH`, `AGGREGATE_SWITCH`, `ROUTER`, `FIREWALL`, `PATCH_PANEL`, `AP`, `MODEM`
|
||||
**Devices without ports:** `NAS`, `PDU`, `BLANK` (SERVER optionally has ports)
|
||||
**Devices with interactive ports:** `SWITCH`, `AGGREGATE_SWITCH`, `ROUTER`, `FIREWALL`, `PATCH_PANEL`, `AP`, `MODEM`, `NAS`, `PDU`, (SERVER optionally has ports) (Ability to add custom rack items) (Ability to assign number of ports and what type they are to network devices) (Constants are good for rapid deployment bu all devices beed to be fully configurable)
|
||||
|
||||
### Port Count & U-Size Defaults (`constants.ts`)
|
||||
|
||||
```ts
|
||||
export const MODULE_PORT_DEFAULTS: Record<ModuleType, number> = {
|
||||
SWITCH: 24,
|
||||
AGGREGATE_SWITCH: 48,
|
||||
AGGREGATE_SWITCH: 8,
|
||||
ROUTER: 4,
|
||||
FIREWALL: 8,
|
||||
PATCH_PANEL: 24,
|
||||
AP: 1,
|
||||
MODEM: 2,
|
||||
SERVER: 2,
|
||||
NAS: 0,
|
||||
PDU: 0,
|
||||
NAS: 1,
|
||||
PDU: 12,
|
||||
BLANK: 0,
|
||||
OTHER: 0,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user