secubox-openwrt/config-backups/README.md
CyberMind-FR ccfb58124c docs: Add trilingual documentation (French and Chinese translations)
Add complete French (fr) and Chinese (zh) translations for all documentation:

- Root files: README, CHANGELOG, SECURITY, BETA-RELEASE
- docs/: All 16 core documentation files
- DOCS/: All 19 deep-dive documents including embedded/ and archive/
- package/secubox/: All 123+ package READMEs
- Misc: secubox-tools/, scripts/, EXAMPLES/, config-backups/, streamlit-apps/

Total: 346 translation files created

Each file includes language switcher links for easy navigation between
English, French, and Chinese versions.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-03-20 10:00:18 +01:00

36 lines
977 B
Markdown

# SecuBox Configuration Backups
English | [Francais](README.fr.md) | [中文](README.zh.md)
Runtime configuration backups from the SecuBox router for version control.
## Structure
```
config-backups/
├── bind/
│ ├── named.conf # Main BIND configuration
│ ├── named.conf.zones # Zone declarations
│ └── zones/ # Zone files
│ ├── maegia.tv.zone
│ ├── ganimed.fr.zone
│ ├── secubox.in.zone
│ └── ...
```
## Sync from Router
```bash
# Sync all BIND config
ssh root@192.168.255.1 "cat /etc/bind/named.conf.zones" > config-backups/bind/named.conf.zones
ssh root@192.168.255.1 "cat /etc/bind/zones/*.zone" # per-file
# Sync to router (restore)
scp config-backups/bind/zones/*.zone root@192.168.255.1:/etc/bind/zones/
ssh root@192.168.255.1 "/etc/init.d/named restart"
```
## Local Gitea Mirror
Private config repo: `git.maegia.tv:gandalf/secubox-configs`