diff --git a/show/bgp_frr_v4.py b/show/bgp_frr_v4.py index 4a3e065200..e68efe5289 100644 --- a/show/bgp_frr_v4.py +++ b/show/bgp_frr_v4.py @@ -97,7 +97,7 @@ def neighbors(ipaddress, info_type, namespace): show_default=True, required=True if multi_asic.is_multi_asic is True else False, help='Namespace name or all', - default=None, + default=multi_asic.DEFAULT_NAMESPACE, callback=multi_asic_util.multi_asic_namespace_validation_callback) def network(ipaddress, info_type, namespace): """Show IP (IPv4) BGP network""" diff --git a/show/bgp_frr_v6.py b/show/bgp_frr_v6.py index eb1a5b641b..e36e66ce08 100644 --- a/show/bgp_frr_v6.py +++ b/show/bgp_frr_v6.py @@ -96,7 +96,7 @@ def neighbors(ipaddress, info_type, namespace): show_default=True, required=True if multi_asic.is_multi_asic is True else False, help='Namespace name or all', - default=None, + default=multi_asic.DEFAULT_NAMESPACE, callback=multi_asic_util.multi_asic_namespace_validation_callback) def network(ipaddress, info_type, namespace): """Show BGP ipv6 network"""