update 2026-07-28 01:38:11

This commit is contained in:
action
2026-07-28 01:38:11 +08:00
parent 20b786ab77
commit 25d570431d
6243 changed files with 2850542 additions and 0 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,46 @@
{
"admin/network/bandix": {
"title": "Bandix",
"order": 90,
"action": {
"type": "alias",
"path": "admin/network/bandix/index"
},
"depends": {
"acl": [ "luci-app-bandix" ],
"uci": { "bandix": true }
}
},
"admin/network/bandix/index": {
"title": "Status",
"order": 10,
"action": {
"type": "view",
"path": "bandix/index"
}
},
"admin/network/bandix/connection": {
"title": "Connections",
"order": 15,
"action": {
"type": "view",
"path": "bandix/connection"
}
},
"admin/network/bandix/dns": {
"title": "DNS",
"order": 20,
"action": {
"type": "view",
"path": "bandix/dns"
}
},
"admin/network/bandix/settings": {
"title": "Settings",
"order": 25,
"action": {
"type": "view",
"path": "bandix/settings"
}
}
}
@@ -0,0 +1,12 @@
{
"bandix": {
"title": "Bandix 流量监控",
"description": "局域网设备流量监控和统计服务",
"instances": {
"instance": {
"type": "process",
"init": "bandix"
}
}
}
}
@@ -0,0 +1,75 @@
{
"luci-app-bandix": {
"description": "Grant access to bandix traffic monitoring",
"read": {
"ubus": {
"luci.bandix": [
"getStatus",
"getMetrics",
"getMetricsDay",
"getMetricsWeek",
"getMetricsMonth",
"getConnection",
"getConnectionFlows",
"setHostname",
"deleteDevice",
"getDnsQueries",
"getDnsStats",
"getScheduleLimits",
"setScheduleLimit",
"deleteScheduleLimit",
"clearData",
"restartService",
"getVersion",
"getSystemArch",
"checkUpdate",
"installUpdate",
"getTrafficUsageRanking",
"getTrafficUsageIncrements",
"getRateLimitWhitelist"
]
},
"uci": [
"bandix"
]
},
"write": {
"ubus": {
"luci.bandix": [
"getStatus",
"getMetrics",
"getMetricsDay",
"getMetricsWeek",
"getMetricsMonth",
"getConnection",
"getConnectionFlows",
"setHostname",
"deleteDevice",
"getDnsQueries",
"getDnsStats",
"getScheduleLimits",
"setScheduleLimit",
"deleteScheduleLimit",
"clearData",
"restartService",
"getVersion",
"getSystemArch",
"checkUpdate",
"installUpdate",
"getTrafficUsageRanking",
"getTrafficUsageIncrements",
"getRateLimitWhitelist",
"getRateLimitWhitelistEnabled",
"setRateLimitWhitelistEnabled",
"addRateLimitWhitelist",
"deleteRateLimitWhitelist",
"setDefaultRateLimit",
"updateScheduleLimit"
]
},
"uci": [
"bandix"
]
}
}
}