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
How do I configure rinetd.conf to allow multiple IP, to have one IP address per line like this?
allow 14.49.36.1 allow 14.46.200.1 0.0.0.0 24057 127.0.0.1 6120
But after testing, I found that this configuration is not working, it is only valid for the last line of allow.
The text was updated successfully, but these errors were encountered:
Fix a parsing bug in the rules that would ignore the very first rule.…
d4e0a60
… See #23.
Thanks, you actually found a bug in the configuration parser! The very first rule of the very first server gets ignored.
I have fixed this in git; in the meantime, you can mitigate this problem by adding a dummy rule that will never be matched, such as:
deny 255.255.255.255
Sorry, something went wrong.
I see that you have changed the code. Has this bug been fixed?
Yes, the git repository has the fix. It will be in the next release.
No branches or pull requests
How do I configure rinetd.conf to allow multiple IP, to have one IP address per line like this?
But after testing, I found that this configuration is not working, it is only valid for the last line of allow.
The text was updated successfully, but these errors were encountered: