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
Binding rsyslogd to specific ip address is not working because in the
puppet-rsyslog/templates/server/_default-footer.conf.erb template the following configuration lines are in the wrong order:
Line 7: $UDPServerRun <%= @PORT %> Line 8: $UDPServerAddress <%= @address %>
$UDPServerAddress needs to come before $UDPServerRun . I have tested this with RedHat 7.5 and the lastest rsyslog package.
As it currenlty stands, UDP binds to 0.0.0.0 and not the address specified
Please refer to https://lists.centos.org/pipermail/centos/2010-December/102878.html
The text was updated successfully, but these errors were encountered:
I found someone has raised a pull to fix this. Can this fix get merged?
https://github.com/saz/puppet-rsyslog/pull/285/files
Sorry, something went wrong.
No branches or pull requests
Binding rsyslogd to specific ip address is not working because in the
puppet-rsyslog/templates/server/_default-footer.conf.erb template the following configuration lines are in the wrong order:
Line 7: $UDPServerRun <%= @PORT %>
Line 8: $UDPServerAddress <%= @address %>
$UDPServerAddress needs to come before $UDPServerRun . I have tested this with RedHat 7.5 and the lastest rsyslog package.
As it currenlty stands, UDP binds to 0.0.0.0 and not the address specified
Please refer to https://lists.centos.org/pipermail/centos/2010-December/102878.html
The text was updated successfully, but these errors were encountered: