router-ui: web management page for ports, devices, traffic, speedtest
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
parent
3030d20034
commit
2f1e14495b
10 changed files with 1396 additions and 41 deletions
58
ports.toml
58
ports.toml
|
|
@ -7,9 +7,31 @@
|
|||
# ports — port range as a string, e.g. "26901-26902"
|
||||
# protocol — "tcp", "udp", or "both"
|
||||
# dest — LAN IP to forward to (optional; defaults to 10.0.0.1)
|
||||
#
|
||||
# Editable from the router UI (services/router-ui.nix). Keep parked/commented
|
||||
# entries ABOVE the first [[forward]]: in TOML a comment belongs to whatever
|
||||
# table precedes it, so anything written below the last [[forward]] is deleted
|
||||
# along with that entry the moment the UI removes it.
|
||||
|
||||
dest_default = "10.0.0.1"
|
||||
|
||||
# --- Parked: re-add by moving a block down and uncommenting it ---------------
|
||||
#
|
||||
# 7DTD — servers disabled in services/game-servers.nix.
|
||||
# name = "7DTD game", port = 26900, protocol = "both"
|
||||
# name = "7DTD voice/dynamic", ports = "26901-26902", protocol = "udp"
|
||||
# name = "7DTD-coop game", port = 26910, protocol = "both"
|
||||
# name = "7DTD-coop voice", ports = "26911-26912", protocol = "udp"
|
||||
#
|
||||
# DR (Dungeon Runners) — services/dr-server.nix is disabled.
|
||||
# 2110 tcp, 2603 both, 2604-2605 udp, 2606 tcp
|
||||
#
|
||||
# WoW Classic — stopped 2026-07-28 (containers stopped, not deleted).
|
||||
# name = "WoW Classic realmd", port = 3724, protocol = "tcp"
|
||||
# name = "WoW Classic worldserver", port = 8095, protocol = "tcp"
|
||||
|
||||
# --- Active ------------------------------------------------------------------
|
||||
|
||||
[[forward]]
|
||||
name = "HTTP"
|
||||
port = 80
|
||||
|
|
@ -32,39 +54,3 @@ protocol = "tcp"
|
|||
name = "Pelican game servers"
|
||||
ports = "25565-25600"
|
||||
protocol = "both"
|
||||
|
||||
# 7DTD forwards commented out — servers disabled in services/game-servers.nix.
|
||||
# [[forward]]
|
||||
# name = "7DTD game"
|
||||
# port = 26900
|
||||
# protocol = "both"
|
||||
#
|
||||
# [[forward]]
|
||||
# name = "7DTD voice/dynamic"
|
||||
# ports = "26901-26902"
|
||||
# protocol = "udp"
|
||||
#
|
||||
# [[forward]]
|
||||
# name = "7DTD-coop game"
|
||||
# port = 26910
|
||||
# protocol = "both"
|
||||
#
|
||||
# [[forward]]
|
||||
# name = "7DTD-coop voice/dynamic"
|
||||
# ports = "26911-26912"
|
||||
# protocol = "udp"
|
||||
|
||||
# DR (Dungeon Runners) forwards removed — services/dr-server.nix is disabled.
|
||||
# Re-add 2110 tcp, 2603 both, 2604-2605 udp, 2606 tcp if it comes back.
|
||||
|
||||
# WoW Classic server stopped 2026-07-28 (docker containers stopped, not deleted).
|
||||
# Re-enable both forwards to reopen WAN access.
|
||||
# [[forward]]
|
||||
# name = "WoW Classic realmd"
|
||||
# port = 3724
|
||||
# protocol = "tcp"
|
||||
#
|
||||
# [[forward]]
|
||||
# name = "WoW Classic worldserver"
|
||||
# port = 8095
|
||||
# protocol = "tcp"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue