diff --git a/daemon/core/configservices/quaggaservices/services.py b/daemon/core/configservices/quaggaservices/services.py index 66afdcc1..8aa85807 100644 --- a/daemon/core/configservices/quaggaservices/services.py +++ b/daemon/core/configservices/quaggaservices/services.py @@ -306,9 +306,6 @@ class Bgp(QuaggaService, ConfigService): ipv6_routing: bool = True def quagga_config(self) -> str: - return "" - - def quagga_iface_config(self, iface: CoreInterface) -> str: router_id = get_router_id(self.node) text = f""" ! BGP configuration @@ -322,6 +319,9 @@ class Bgp(QuaggaService, ConfigService): """ return self.clean_text(text) + def quagga_iface_config(self, iface: CoreInterface) -> str: + return "" + class Rip(QuaggaService, ConfigService): """