Closed robertja52 closed 3 years ago
When I define ibgp_role Disabled on a router node, it causes the quagga mako scripts to crash. The fix is easy. The scripts have the following form
% for obj in bgp.var:
% endfor
If the object bgp.var is not defined it crashes. The fix is to find these and add the following.
% if bgp.var: % for obj in bgp.var:
% endfor % endif
autonetkit.zip
thanks -do you have this in a .diff form?
When I define ibgp_role Disabled on a router node, it causes the quagga mako scripts to crash. The fix is easy. The scripts have the following form
% for obj in bgp.var:
use obj
% endfor
If the object bgp.var is not defined it crashes. The fix is to find these and add the following.
% if bgp.var: % for obj in bgp.var:
use obj
% endfor % endif