VLAN & 802.1Q Trunking Analyzer
.vlan-tag { background: #4CAF50; color: white; padding: 3px 8px; border-radius: 12px; font-size: 12px; display: inline-block; margin: 2px; }
.vlan-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
/* Labels inside .section-content (not on purple bg) need dark text */
.section-content .input-group label { color: #555; }
.section-content .input-group input,
.section-content .input-group select {
border: 1px solid #ddd; background: white;
}
.section-content .input-group input:focus,
.section-content .input-group select:focus {
border-color: #4CAF50; box-shadow: 0 0 0 3px rgba(76,175,80,0.1); background: white;
}
섹션 1: VLAN 허용 목록 파서
섹션 2: 802.1Q 태그 오버헤드 계산기
섹션 3: QinQ / 802.1ad 태그 바이트 레이아웃 참조
VLAN 및 802.1Q 트렁킹 분석기
VLAN 허용 목록을 구문 분석하고, 태그 오버헤드를 계산하고, QinQ MTU 영향을 계획합니다.
VLAN 허용 목록 파서
802.1Q 태그 오버헤드 계산기
QinQ / 802.1ad 이중 태그 계획
| 프레임 유형 | 태그 바이트 | 에테르 종류 | 필드가 추가됨 |
|---|---|---|---|
| 태그가 지정되지 않은 802.3 | 0 | — | — |
| 802.1Q(dot1q) | +4 | 0x8100 | TPID(2) + TCI: PCP(3) + DEI(1) + VID(12) |
| QinQ / 802.1ad | +8 | 0x88A8 외부 | 외부 태그(4) + 내부 802.1Q 태그(4) |