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

Disabling ports by adding parameter ‘-P 0’ #20834

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dockers/docker-fpm-frr/frr/supervisord/supervisord.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependent_startup=true
dependent_startup_wait_for=zebra:running

[program:staticd]
command=/usr/lib/frr/staticd -A 127.0.0.1
command=/usr/lib/frr/staticd -A 127.0.0.1 -P 0
priority=4
autostart=false
autorestart=false
Expand All @@ -64,7 +64,7 @@ dependent_startup_wait_for=zsocket:exited

{% if DEVICE_METADATA.localhost.frr_mgmt_framework_config is defined and DEVICE_METADATA.localhost.frr_mgmt_framework_config == "true" %}
[program:bfdd]
command=/usr/lib/frr/bfdd -A 127.0.0.1
command=/usr/lib/frr/bfdd -A 127.0.0.1 -P 0
priority=4
stopsignal=KILL
autostart=false
Expand All @@ -77,7 +77,7 @@ dependent_startup_wait_for=zebra:running
{% endif %}

[program:bgpd]
command=/usr/lib/frr/bgpd -A 127.0.0.1 -M snmp
command=/usr/lib/frr/bgpd -A 127.0.0.1 -P 0 -M snmp
priority=5
stopsignal=KILL
autostart=false
Expand All @@ -90,7 +90,7 @@ dependent_startup_wait_for=zsocket:exited

{% if DEVICE_METADATA.localhost.frr_mgmt_framework_config is defined and DEVICE_METADATA.localhost.frr_mgmt_framework_config == "true" %}
[program:ospfd]
command=/usr/lib/frr/ospfd -A 127.0.0.1 -M snmp
command=/usr/lib/frr/ospfd -A 127.0.0.1 -P 0 -M snmp
priority=5
stopsignal=KILL
autostart=false
Expand All @@ -102,7 +102,7 @@ dependent_startup=true
dependent_startup_wait_for=zebra:running

[program:pimd]
command=/usr/lib/frr/pimd -A 127.0.0.1
command=/usr/lib/frr/pimd -A 127.0.0.1 -P 0
priority=5
stopsignal=KILL
autostart=false
Expand Down
Loading