]> git.puffer.fish Git - mirror/frr.git/commit
zebra: Add missing json attributes for show evpn 12614/head
authorSindhu Parvathi Gopinathan <sgopinathan@nvidia.com>
Sat, 7 Jan 2023 03:54:49 +0000 (19:54 -0800)
committerChirag Shah <chirag@nvidia.com>
Mon, 9 Jan 2023 23:36:41 +0000 (15:36 -0800)
commit826beeffe63acda4628f0f7d0bdd2cf280e717a1
tree97b2fe275463a635ec95a024caab66806065bd11
parent61615e4dfd377dd40265591f37531079e48863d1
zebra: Add missing json attributes for show evpn

Missing json attributes added for show evpn json

Before:
```
tor-1# show evpn json
{
  "advertiseGatewayMacip":"No",
  "numVnis":26,
  "numL2Vnis":21,
  "numL3Vnis":5,
  "isDuplicateAddrDetection":true,
  "maxMoves":5,
  "detectionTime":180,
  "detectionFreezeTime":0,
  "macHoldtime":1080,
  "neighHoldtime":1080,
  "startupDelay":180,
  "startupDelayTimer":"--:--:--",
  "uplinkConfigCount":0,
  "uplinkActiveCount":0
}
tor-1#
```

After:
```
tor-1# show evpn json
{
  "advertiseGatewayMacip":"No",
  "advertiseSviMacip":"No",
  "advertiseSviMac":"No",
  "numVnis":26,
  "numL2Vnis":21,
  "numL3Vnis":5,
  "isDuplicateAddrDetection":true,
  "maxMoves":5,
  "detectionTime":180,
  "detectionFreezeTime":0,
  "macHoldtime":1080,
  "neighHoldtime":1080,
  "startupDelay":180,
  "startupDelayTimer":"--:--:--",
  "uplinkConfigCount":0,
  "uplinkActiveCount":0
}
tor-1#
```

Ticket:#3323248

Issue:3323248

Testing: UT done

Signed-off-by: Sindhu Parvathi Gopinathan's <sgopinathan@nvidia.com>
zebra/zebra_vxlan.c