diff options
| author | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2022-10-27 20:01:24 +0200 | 
|---|---|---|
| committer | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2022-11-08 22:44:23 +0100 | 
| commit | a3ff3dff3fcf3e264d4484a1ce5bbe40db3edcb7 (patch) | |
| tree | e5c65a9b497c37ea6ce1efc66cb8cfee0cc27958 /zebra/zebra_srv6_vty.c | |
| parent | 05d99980f36769778ebba434b0c101d36bf5fb4f (diff) | |
lib,zebra: Add SRv6 uSID info to VTY output
In this commit, we extend to print the `SRV6_LOCATOR_USID` flag.
The output appears as follows:
```
{
  "locators":[
    {
      "name":"loc1",
      "prefix":"fc00:0:1::/48",
      "blockBitsLength":32,
      "nodeBitsLength":16,
      "functionBitsLength":16,
      "argumentBitsLength":0,
      "uSID":true,
      "statusUp":true,
      "chunks":[
        {
          "prefix":"fc00:0:1::/48",
          "proto":"bgp"
        }
      ]
    }
  ]
}
```
Signed-off-by: Carmine Scarpitta <carmine.scarpitta@uniroma2.it>
Diffstat (limited to 'zebra/zebra_srv6_vty.c')
| -rw-r--r-- | zebra/zebra_srv6_vty.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zebra_srv6_vty.c b/zebra/zebra_srv6_vty.c index 9adfc6550a..956669af56 100644 --- a/zebra/zebra_srv6_vty.c +++ b/zebra/zebra_srv6_vty.c @@ -174,6 +174,9 @@ DEFUN (show_srv6_locator_detail,  		vty_out(vty, "Argument-Bit-Len: %u\n",  			locator->argument_bits_length); +		if (CHECK_FLAG(locator->flags, SRV6_LOCATOR_USID)) +			vty_out(vty, "Behavior: uSID\n"); +  		vty_out(vty, "Chunks:\n");  		for (ALL_LIST_ELEMENTS_RO((struct list *)locator->chunks, node,  					  chunk)) {  | 
