workspace/skills/aruba-cx-switching/SKILL.md
View and manage Aruba CX switch VLANs and MAC address tables for Layer 2 operations
npx skillsauth add automateyournetwork/netclaw aruba-cx-switchingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
View VLANs, MAC address tables, and manage Layer 2 operations on HPE Aruba CX switches. Includes read-only operations for viewing network segmentation and write operations (ITSM-gated) for VLAN management.
aruba-cx-mcp (community MCP from slientnight)python3 -u mcp-servers/aruba-cx-mcp/aruba_cx_mcp_server.py (stdio transport)ARUBA_CX_TARGETS (JSON array) or ARUBA_CX_CONFIG (file path)ITSM_ENABLED=true| Tool | Parameters | What It Does |
|------|------------|--------------|
| get_vlans | target, vlan_id? | Get VLAN configurations (ID, name, ports) |
| get_mac_table | target, vlan_id?, mac_address? | Get MAC address table entries |
| create_vlan | target, vlan_id, name?, cr_number? | Create a new VLAN (ITSM-gated) |
| configure_vlan | target, vlan_id, name?, tagged_ports?, untagged_ports?, cr_number? | Modify VLAN (ITSM-gated) |
| delete_vlan | target, vlan_id, cr_number? | Delete a VLAN (ITSM-gated) |
# View all VLANs
"Show all VLANs on core-sw-1"
# Check specific VLAN
"What ports are in VLAN 100 on core-sw-1?"
# List VLAN names
"Show me the VLAN names configured on core-sw-1"
# Find untagged ports
"Which ports are untagged in VLAN 100?"
# View full MAC table
"Show the MAC address table for core-sw-1"
# Filter by VLAN
"Show MAC addresses in VLAN 100 on core-sw-1"
# Find specific MAC
"Find MAC address aa:bb:cc:dd:ee:ff on core-sw-1"
# Locate endpoint
"Which port is MAC aa:bb:cc:dd:ee:ff learned on?"
# Count MACs per VLAN
"How many MAC addresses are in each VLAN on core-sw-1?"
# Create VLAN (requires CR when ITSM enabled)
"Create VLAN 200 named 'Guest_Network' on core-sw-1 with CR CHG0001234"
# Modify VLAN (requires CR when ITSM enabled)
"Add port 1/1/10 as untagged to VLAN 200 on core-sw-1 with CR CHG0001234"
# Rename VLAN
"Rename VLAN 200 to 'Visitor_Network' on core-sw-1 with CR CHG0001234"
# Delete VLAN (requires CR when ITSM enabled)
"Delete VLAN 200 on core-sw-1 with CR CHG0001234"
Write operations (create_vlan, configure_vlan, delete_vlan) require change management approval:
| Environment Variable | Behavior |
|---------------------|----------|
| ITSM_ENABLED=false | Write operations proceed without CR validation |
| ITSM_ENABLED=true | Write operations require valid ServiceNow CR number |
| ITSM_LAB_MODE=true | CR format validated but not checked against ServiceNow |
CR Format: Must match ServiceNow pattern (e.g., CHG0001234)
[
{
"id": 1,
"name": "default",
"admin_state": "up",
"tagged_ports": [],
"untagged_ports": ["1/1/1", "1/1/2"],
"voice": false
},
{
"id": 100,
"name": "Management",
"admin_state": "up",
"tagged_ports": ["1/1/49", "1/1/50"],
"untagged_ports": ["1/1/3", "1/1/4"],
"voice": false
}
]
[
{
"mac_address": "aa:bb:cc:dd:ee:ff",
"vlan_id": 100,
"port": "1/1/3",
"type": "dynamic",
"age": 300
},
{
"mac_address": "11:22:33:44:55:66",
"vlan_id": 100,
"port": "1/1/4",
"type": "dynamic",
"age": 120
}
]
{
"success": true,
"message": "VLAN 200 created",
"vlan": {
"id": 200,
"name": "Guest_Network"
}
}
| Error Code | Meaning | Resolution | |------------|---------|------------| | AUTH_FAILED | Invalid credentials | Verify username/password in ARUBA_CX_TARGETS | | CONN_TIMEOUT | Switch unreachable | Check network connectivity | | VLAN_NOT_FOUND | VLAN doesn't exist | Verify VLAN ID is configured | | VLAN_EXISTS | VLAN already exists | Use configure_vlan to modify existing VLAN | | MAC_NOT_FOUND | MAC not in table | MAC may have aged out or device disconnected | | CR_REQUIRED | ITSM CR required | Provide cr_number parameter when ITSM_ENABLED | | CR_INVALID | CR validation failed | Verify CR format (CHG0001234) and status | | WRITE_FAILED | Configuration failed | Check switch connectivity and permissions |
tools
Federate your NetClaw with other NetClaw operators over the BGP mesh — exchange capability inventories and ask your claw what a peer can do. (US1; remote invocation and chat land in later phases.)
tools
3D network topology visualization and interactive digital twin in Unreal Engine 5.8 via the built-in UE5 MCP server.
testing
Human-in-the-loop escalation via HumanRail — route low-confidence agent decisions, pre-destructive operation approvals, and ambiguous incident tickets to real human engineers. Human answers are verified and returned as structured output. Workers are paid via Lightning Network. Use when the agent is uncertain, when a destructive change needs explicit human sign-off beyond a ServiceNow CR, or when an ambiguous ticket requires human triage before automated handling.
testing
IPv4 and IPv6 subnet calculator - CIDR breakdown, usable hosts, previous/next subnets, address classification, VLSM planning, and dual-stack analysis. Use when calculating subnets, figuring out how many hosts fit in a prefix, planning IP addressing, getting wildcard masks for ACLs, or checking if two IPs are in the same subnet.