diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-20 15:33:27 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-20 15:33:27 +0200 |
commit | 8328f25bf5cb02db35b244ee3d6f3030671d0321 (patch) | |
tree | a431f0d01c3a94527ce265c41bcc0446e71e6ffc /data | |
parent | c09d8e9ab4b862a5b9de5321c87621f530c072c1 (diff) | |
download | vyos-build-8328f25bf5cb02db35b244ee3d6f3030671d0321.tar.gz vyos-build-8328f25bf5cb02db35b244ee3d6f3030671d0321.zip |
T923: support SNMP integration with FRR routing daemon
Diffstat (limited to 'data')
-rwxr-xr-x | data/live-build-config/hooks/30-frr-configs.chroot | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/live-build-config/hooks/30-frr-configs.chroot b/data/live-build-config/hooks/30-frr-configs.chroot index b2a715d3..cc169fb5 100755 --- a/data/live-build-config/hooks/30-frr-configs.chroot +++ b/data/live-build-config/hooks/30-frr-configs.chroot @@ -31,11 +31,11 @@ bfdd=no daemons_conf = """ vtysh_enable=yes -zebra_options=" -s 90000000 --daemon -A 127.0.0.1 -n" -bgpd_options=" --daemon -A 127.0.0.1" -ospfd_options=" --daemon -A 127.0.0.1" -ospf6d_options=" --daemon -A ::1" -ripd_options=" --daemon -A 127.0.0.1" +zebra_options=" -s 90000000 --daemon -A 127.0.0.1 -M snmp -n" +bgpd_options=" --daemon -A 127.0.0.1 -M snmp" +ospfd_options=" --daemon -A 127.0.0.1 -M snmp" +ospf6d_options=" --daemon -A ::1 -M snmp" +ripd_options=" --daemon -A 127.0.0.1 -M snmp" ripngd_options=" --daemon -A ::1" isisd_options=" --daemon -A 127.0.0.1" pimd_options=" --daemon -A 127.0.0.1" |