secubox-openwrt/luci-app-network-modes/root/etc/config/network-modes
CyberMind-FR 798e2e0435 docs: Add comprehensive CyberMood global theme system documentation
- Created GLOBAL_THEME_SYSTEM.md with complete theme specification
- Added THEME_CONTEXT.md for quick AI assistant reference
- Defined CyberMood design language (metallic, glass, neon aesthetics)
- Provided ready-to-use templates (CSS variables, components, JS controller)
- Planned multi-language support (en, fr, de, es)
- Created 5-week implementation roadmap
- Added 5 ready-to-use prompts for theme implementation
- Updated network-modes module with travel mode support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-28 16:58:11 +01:00

69 lines
1.9 KiB
Plaintext

config network-modes 'config'
option current_mode 'router'
option last_change ''
option backup_config '1'
config mode 'sniffer'
option name 'Sniffer / Passthrough'
option description 'Transparent bridge for network analysis'
option enabled '0'
option bridge_interface 'br-lan'
option capture_interface 'eth0'
option netifyd_enabled '1'
option promiscuous '1'
config mode 'accesspoint'
option name 'Access Point'
option description 'WiFi access point with optimizations'
option enabled '0'
option upstream_interface 'eth0'
option dhcp_client '1'
option wifi_channel 'auto'
option wifi_htmode 'VHT80'
option wifi_txpower '20'
option roaming_enabled '1'
option band_steering '1'
config mode 'relay'
option name 'Relay / Extender'
option description 'Network relay with WireGuard optimization'
option enabled '0'
option relay_interface 'wlan0'
option lan_interface 'eth0'
option wireguard_enabled '1'
option wireguard_interface 'wg0'
option mtu_optimization '1'
option mss_clamping '1'
config mode 'router'
option name 'Router'
option description 'Full router with WAN, proxy and HTTPS frontends'
option enabled '1'
option wan_interface 'eth1'
option wan_protocol 'dhcp'
option lan_interface 'br-lan'
option nat_enabled '1'
option firewall_enabled '1'
option proxy_enabled '0'
option proxy_type 'squid'
option https_frontend '0'
option frontend_type 'nginx'
list frontend_domains ''
config mode 'travel'
option name 'Travel Router'
option description 'Portable router with WiFi client uplink and personal hotspot'
option enabled '0'
option client_radio 'radio1'
option client_interface 'wlan1'
option hotspot_radio 'radio0'
option hotspot_interface 'wlan0'
option ssid ''
option password ''
option encryption 'sae-mixed'
option hotspot_ssid 'SecuBox-Travel'
option hotspot_password 'TravelSafe123!'
option clone_mac ''
option lan_subnet '10.77.0.1'
option lan_netmask '255.255.255.0'