We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The documentation suggests using the nftables rule
socket transparent 0 counter return
It looks like this rule is preventing new connections from being established to TProxy. I suggest using this rule instead
ct state != new socket transparent 0 counter return
The text was updated successfully, but these errors were encountered:
Thank you for the suggestion!
Would you please create a Pull Request for it?
You can find the source of the TPROXY docs here.
Sorry, something went wrong.
According to iptables-extensions man page the rule
iptables -t mangle -A HYSTERIA -m socket -j RETURN
ignores wildcard-bound sockets.
So the correct alternative for nftables is
socket transparent 0 socket wildcard 0 counter return
In my case this solved all connection problems.
haruue
Successfully merging a pull request may close this issue.
The documentation suggests using the nftables rule
It looks like this rule is preventing new connections from being established to TProxy. I suggest using this rule instead
The text was updated successfully, but these errors were encountered: