1. 24 Feb, 2026 3 commits
    • Vitaly Lipatov's avatar
      router: add web UI for managing bypass/direct route lists · 1e73e6e8
      Vitaly Lipatov authored
      Python web API (route-web-api.py) on port 80 for adding domains to
      egw bypass or dgw direct lists. Runs as unprivileged routeweb user,
      list files are picked up by route-update.sh via symlinks.
      
      Features:
      - Add/remove/move domains between bypass and direct lists
      - Auto-remove from other list when adding (mutual exclusion)
      - "No rule" button to remove from input field
      - Active routes section showing all applied rules from route-update
      - Last update timestamp from all-routes.json mtime
      
      route-update.sh: generate_web_json() exports all list entries
      as JSON for the web UI after each run.
      Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
      1e73e6e8
    • Vitaly Lipatov's avatar
      router: fix ip rule pref parsing (pref is $1 with colon, not a named field) · f0223740
      Vitaly Lipatov authored
      ip rule show format is "PREF:\tfrom ... lookup TABLE", not "... pref PREF".
      The awk was looking for a "pref"/"priority" field that doesn't exist, so
      old rules were never removed and new prefs were never applied.
      
      Also fix grep -c/-q "lookup TABLE" to use -w (word boundary) to prevent
      "lookup 2" from matching "lookup 200".
      Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
      f0223740
    • Vitaly Lipatov's avatar
      router: decouple ip rule pref from table number, handle moved .list files · 5e7e4541
      Vitaly Lipatov authored
      Pref was calculated as table_number × 10, meaning moving a .list between
      groups didn't change its priority. Now pref is assigned sequentially by
      group/list processing order (base=1000, group_step=100, list_step=10).
      
      Also improves cleanup_state to detect .list files moved between groups —
      only removes old state dir without flushing the shared routing table.
      Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
      5e7e4541
  2. 23 Feb, 2026 4 commits
  3. 22 Feb, 2026 11 commits
  4. 21 Feb, 2026 2 commits
  5. 20 Feb, 2026 3 commits
  6. 19 Feb, 2026 2 commits
  7. 18 Feb, 2026 15 commits