summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/vyos/frrender.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/vyos/frrender.py b/python/vyos/frrender.py
index b8b6435f1..9504c4c2c 100644
--- a/python/vyos/frrender.py
+++ b/python/vyos/frrender.py
@@ -720,9 +720,11 @@ class FRRender:
debug('FRR: START CONFIGURATION RENDERING')
# we can not reload an empty file, thus we always embed the marker
output = '!\n'
+
# Enable FRR logging
output += 'log syslog\n'
- output += 'log facility local7\n'
+ output += 'log facility daemon\n'
+
# Enable SNMP agentx support
# SNMP AgentX support cannot be disabled once enabled
if 'snmp' in config_dict: