[docker-frr]: change default routing mode to separated and fix a bug in separated mode (#2961)
In separated mode, frr requires to run vtysh_b to load individual configuration Signed-off-by: Guohan Lu <gulv@microsoft.com>
This commit is contained in:
parent
3f4de49e3d
commit
2a5bfe2bd7
@ -35,7 +35,7 @@ supervisorctl start zebra
|
|||||||
supervisorctl start staticd
|
supervisorctl start staticd
|
||||||
supervisorctl start bgpd
|
supervisorctl start bgpd
|
||||||
|
|
||||||
if [ "$CONFIG_TYPE" == "unified" ]; then
|
if [ -z "$CONFIG_TYPE" ] || [ "$CONFIG_TYPE" == "separated" ]; then
|
||||||
supervisorctl start vtysh_b
|
supervisorctl start vtysh_b
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -432,7 +432,7 @@ def parse_xml(filename, platform=None, port_config_file=None):
|
|||||||
neighbors = None
|
neighbors = None
|
||||||
devices = None
|
devices = None
|
||||||
hostname = None
|
hostname = None
|
||||||
docker_routing_config_mode = "unified"
|
docker_routing_config_mode = "separated"
|
||||||
port_speeds_default = {}
|
port_speeds_default = {}
|
||||||
port_speed_png = {}
|
port_speed_png = {}
|
||||||
port_descriptions = {}
|
port_descriptions = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user