Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Each revision is versioned by the date of the revision.

Place any unreleased changes here, that are subject to release in coming versions :).

## 2026-05-19

- Fix a problem in the input chain that blocks forwarded traffic.

## 2026-03-05

- Add landing pages for how-to and reference section.
Expand Down
1 change: 1 addition & 0 deletions src/aproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ def _render_nft_rules(self) -> str:
chain input {{
type filter hook input priority filter; policy accept;
iif "lo" accept
ct status dnat tcp dport {APROXY_LISTEN_PORT} accept
Comment thread
weiiwang01 marked this conversation as resolved.
Outdated
ip saddr {server_ip} tcp dport {APROXY_LISTEN_PORT} accept
tcp dport {APROXY_LISTEN_PORT} drop
}}
Expand Down
Loading