Sync documentation from DOCS/ directory

- Updated all documentation files
- Added Home page with navigation
- Created sidebar for easy navigation
- Organized archive section
- Fixed internal links for wiki format

Total pages: 19

🤖 Generated with SecuBox wiki sync script
Date: 2025-12-28
CyberMind-FR 2025-12-28 21:53:59 +01:00
parent 11b73c42e2
commit 9102357a80
2 changed files with 21 additions and 4 deletions

@ -615,6 +615,23 @@ handleSaveSettings: function() {
- **Special Requirements:** UCI config validation, rollback mechanism
- **Dependencies:** Network, firewall, DHCP configs
#### Available Modes (v0.3.6)
The production build now includes nine fully supported profiles. Each profile exposes its own RPC (`*_config`), view, and default values under `network-modes.<mode>`:
| Mode ID | Description | Notable Features |
| --- | --- | --- |
| `router` | Standard router | NAT + firewall, DHCP, proxy/HTTPS front-end helpers |
| `doublenat` | Behind ISP CPE | WAN DHCP client, isolated LAN/guest bridge, UPnP/DMZ controls |
| `multiwan` | Dual uplink | Health checks, failover hold timers, load-balance/mwan3 |
| `vpnrelay` | VPN gateway | WireGuard/OpenVPN, kill switch, DNS override, split tunnel |
| `bridge` | Layer-2 pass-through | No NAT, all ports bridged, DHCP client |
| `accesspoint` | WiFi AP | Bridge upstream, disable routing/DHCP, 802.11r/k/v toggles |
| `relay` | WiFi repeater | STA+AP, relayd/WDS, WireGuard assist, MTU/MSS tuning |
| `travel` | Portable router | Client WiFi scan, MAC clone, WPA3 hotspot, sandbox LAN |
| `sniffer` | TAP/sniffer | Promiscuous bridge, Netifyd integration, pcap support |
When adding another mode, update: UCI defaults (`root/etc/config/network-modes`), the RPC script (`get_<mode>_config`, `update_settings`, `generate_config`, `set_mode` allow-list), the JS API/view/menu, and the docs.
---
## Troubleshooting Guide

@ -150,8 +150,8 @@
- **Use Cases**: Traffic analysis, bandwidth optimization, security monitoring
#### luci-app-network-modes
- **Version**: 0.3.1-1
- **Status**: ✅ In Heavily Development Stage
- **Version**: 0.3.5-1
- **Status**: ✅ Production Ready
- **Description**: Dynamic network mode switching and configuration
- **Views**: 7 (overview, wizard, router, relay, accesspoint, sniffer, settings)
- **JavaScript Lines**: 2,104
@ -171,8 +171,8 @@
- DHCP server/client mode switching
- Interface bridging automation
- **Recent Updates**:
- v0.3.1: Enhanced mode switching logic
- Improved configuration persistence
- v0.3.5: Auto-deploy proxies (Squid/TinyProxy/Privoxy), DoH, nginx vhosts, and Lets Encrypt certificates
- Auto-apply advanced WiFi (802.11r/k/v, band steering) and tcpdump packet capture per mode
- **Integration**: network, firewall, DHCP, hostapd/wpa_supplicant
---