Update ce_vxlan_arp to fix bugs (#61995)
* Update ce_vxlan_arp to fix bugs * Update ce_vxlan_arp to fix bugs
This commit is contained in:
parent
e559fafbc4
commit
12512f7319
1 changed files with 3 additions and 3 deletions
|
@ -286,12 +286,12 @@ class VxlanArp(object):
|
|||
"""get current configuration"""
|
||||
|
||||
flags = list()
|
||||
exp = "| ignore-case section include evn bgp|host collect protocol bgp"
|
||||
exp = r"| ignore-case section include evn bgp|host collect protocol bgp"
|
||||
if self.vbdif_name:
|
||||
exp += "|^interface %s$" % self.vbdif_name
|
||||
exp += r"|^#\s+interface %s\s+" % self.vbdif_name.lower().capitalize().replace(" ", "")
|
||||
|
||||
if self.bridge_domain_id:
|
||||
exp += "|^bridge-domain %s$" % self.bridge_domain_id
|
||||
exp += r"|^#\s+bridge-domain %s\s+" % self.bridge_domain_id
|
||||
|
||||
flags.append(exp)
|
||||
cfg_str = self.get_config(flags)
|
||||
|
|
Loading…
Reference in a new issue