Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기switching
스타2
포크2
업데이트2026년 2월 28일 22:55
Network switching fundamentals
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Network switching fundamentals
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Statistical physics and thermodynamics
Statistical analysis for scientific research
Statistical analysis and methods
3D structure of biological molecules
Structural biology fundamentals
IP subnetting and network segmentation
| name | switching |
| description | Network switching fundamentals |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"network-engineers","category":"networking"} |
Use me when:
Switches operate at Layer 2, forwarding based on MAC addresses:
┌─────────────────────────────────────┐
│ Switch Forwarding │
├─────────────────────────────────────┤
│ MAC Address Table (CAM Table) │
│ Port 1: aa:bb:cc:dd:ee:ff │
│ Port 2: 11:22:33:44:55:66 │
│ Port 3: aa:bb:cc:dd:ee:11 │
└─────────────────────────────────────┘
Frames forwarded based on:
- Destination MAC known → Forward to port
- Unknown → Flood to all ports
- Broadcast → Flood to all ports
! Create VLANs
vlan 10
name Data
vlan 20
name Voice
vlan 99
name Management
! Assign ports to VLANs
interface GigabitEthernet0/1
switchport mode access
switchport access vlan 10
spanning-tree portfast
! Trunk port
interface GigabitEthernet0/24
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk allowed vlan 10,20,99