[PR #60] [MERGED] SPR Bug fixes #279

Closed
opened 2026-03-04 01:36:03 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/60
Author: @lts-rad
Created: 9/6/2022
Status: Merged
Merged: 9/6/2022
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • be2376f [logs] add packet logs code, using ulogd
  • ff88117 [logs] rm tmp code
  • 0992cf5 [logs] add notification settings + forked eventbus for unix sockets
  • c211709 [logs] info
  • a8e22d6 [logs] show settings if avail
  • bf40856 Merge branch 'dev' into packet_logs
  • a00ee56 [logs] use spr fork of EventBus
  • f298ac7 [logs] update prefix, documentation + client code
  • 0ae234c [log] update EventBus. add SprBus code
  • 394a718 [log] update EventBus. add SprBus code

📊 Changes

19 files changed (+772 additions, -260 deletions)

View changed files

📝 api/code/api.go (+5 -2)
📝 api/code/firewall.go (+5 -5)
📝 api/code/notifications.go (+20 -10)
📝 api/code/plugins.go (+12 -3)
📝 base/scripts/nft_rules.sh (+10 -0)
📝 base/template_configs/base/virtual-config.sh (+6 -1)
📝 docker-compose-virt.yml (+35 -36)
📝 frontend/src/api/MockAPI.js (+80 -1)
📝 frontend/src/api/Plugin.js (+2 -2)
📝 frontend/src/components/DNS/DNSBlocklist.js (+80 -154)
📝 frontend/src/components/Devices/DeviceListing.js (+19 -16)
📝 frontend/src/layouts/Admin.js (+25 -22)
📝 frontend/src/views/Tags.js (+1 -1)
📝 packet_logs/Dockerfile (+11 -0)
📝 packet_logs/code/main.go (+26 -7)
packet_logs/stream-json-logs/go.mod (+17 -0)
packet_logs/stream-json-logs/go.sum (+139 -0)
packet_logs/stream-json-logs/main.go (+95 -0)
virtual_install.sh (+184 -0)

📄 Description

Fixes

  • fix VIRT support
  • fix Group refresh for MAC filter
  • fix UPSTREAM_ENABLE configuration on fresh installation
    Features
  • add indev/outdev to packet stream, build packet stream logger by default

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/spr-networks/super/pull/60 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 9/6/2022 **Status:** ✅ Merged **Merged:** 9/6/2022 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`be2376f`](https://github.com/spr-networks/super/commit/be2376fb9e6509dad2c5704ee482d7f1b60cb0c9) [logs] add packet logs code, using ulogd - [`ff88117`](https://github.com/spr-networks/super/commit/ff88117c8541385761d74fb14d5bea8be8361ee7) [logs] rm tmp code - [`0992cf5`](https://github.com/spr-networks/super/commit/0992cf5bb84e76d2d9d990a1b968fa2ba3d29f9c) [logs] add notification settings + forked eventbus for unix sockets - [`c211709`](https://github.com/spr-networks/super/commit/c211709b1374a9ae5e215ccf1dfc7b95c1a2751b) [logs] info - [`a8e22d6`](https://github.com/spr-networks/super/commit/a8e22d61f1ba9be306fc7621e911bdd2f47b20e0) [logs] show settings if avail - [`bf40856`](https://github.com/spr-networks/super/commit/bf40856d2c13d6d6a0a1292c740d0673ac54b1f9) Merge branch 'dev' into packet_logs - [`a00ee56`](https://github.com/spr-networks/super/commit/a00ee567c8839b7a05ed0908e9a67fd9e4005630) [logs] use spr fork of EventBus - [`f298ac7`](https://github.com/spr-networks/super/commit/f298ac72a862ca1bd3f61455ec0ef25e86a3779c) [logs] update prefix, documentation + client code - [`0ae234c`](https://github.com/spr-networks/super/commit/0ae234c1298bf7afbb3e4e8e1dc1d7fe3ab3ea82) [log] update EventBus. add SprBus code - [`394a718`](https://github.com/spr-networks/super/commit/394a718c8b51f2b4cd2b61fb80b09309f62266af) [log] update EventBus. add SprBus code ### 📊 Changes **19 files changed** (+772 additions, -260 deletions) <details> <summary>View changed files</summary> 📝 `api/code/api.go` (+5 -2) 📝 `api/code/firewall.go` (+5 -5) 📝 `api/code/notifications.go` (+20 -10) 📝 `api/code/plugins.go` (+12 -3) 📝 `base/scripts/nft_rules.sh` (+10 -0) 📝 `base/template_configs/base/virtual-config.sh` (+6 -1) 📝 `docker-compose-virt.yml` (+35 -36) 📝 `frontend/src/api/MockAPI.js` (+80 -1) 📝 `frontend/src/api/Plugin.js` (+2 -2) 📝 `frontend/src/components/DNS/DNSBlocklist.js` (+80 -154) 📝 `frontend/src/components/Devices/DeviceListing.js` (+19 -16) 📝 `frontend/src/layouts/Admin.js` (+25 -22) 📝 `frontend/src/views/Tags.js` (+1 -1) 📝 `packet_logs/Dockerfile` (+11 -0) 📝 `packet_logs/code/main.go` (+26 -7) ➕ `packet_logs/stream-json-logs/go.mod` (+17 -0) ➕ `packet_logs/stream-json-logs/go.sum` (+139 -0) ➕ `packet_logs/stream-json-logs/main.go` (+95 -0) ➕ `virtual_install.sh` (+184 -0) </details> ### 📄 Description Fixes - fix VIRT support - fix Group refresh for MAC filter - fix UPSTREAM_ENABLE configuration on fresh installation Features - add indev/outdev to packet stream, build packet stream logger by default --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:36:03 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/super#279
No description provided.