Skip to content
New issue

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

conntrack-sync: T6057: Add ability to disable syslog for conntrackd #3099

Merged
merged 1 commit into from Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/templates/conntrackd/conntrackd.conf.j2
Expand Up @@ -76,7 +76,7 @@ General {
HashSize {{ hash_size }}
HashLimit {{ table_size | int *2 }}
LogFile off
Syslog on
Syslog {{ 'off' if disable_syslog is vyos_defined else 'on' }}
LockFile /var/lock/conntrack.lock
UNIX {
Path /var/run/conntrackd.ctl
Expand Down
6 changes: 6 additions & 0 deletions interface-definitions/service_conntrack-sync.xml.in
Expand Up @@ -52,6 +52,12 @@
<valueless/>
</properties>
</leafNode>
<leafNode name="disable-syslog">
<properties>
<help>Disable connection logging via Syslog</help>
<valueless/>
</properties>
</leafNode>
<leafNode name="event-listen-queue-size">
<properties>
<help>Queue size for local conntrack events</help>
Expand Down