diff options
| author | Christian Hopps <chopps@labn.net> | 2024-01-24 11:35:19 -0500 | 
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2024-01-26 12:34:23 -0500 | 
| commit | 63ca751c1186483f82f0d464bc1c8c43e3a2755f (patch) | |
| tree | 3c61ebdb0ba2977de423a335abae057ae4ed6631 /vtysh | |
| parent | dabc92de9e3b02e5d1a73d6fc43ffbd51eaded91 (diff) | |
lib: convert filters to mgmtd
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'vtysh')
| -rw-r--r-- | vtysh/vtysh.h | 12 | 
1 files changed, 11 insertions, 1 deletions
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index 9081cab763..7671609e3a 100644 --- a/vtysh/vtysh.h +++ b/vtysh/vtysh.h @@ -49,7 +49,17 @@ extern struct event_loop *master;  		VTYSH_PIM6D | VTYSH_NHRPD | VTYSH_EIGRPD | VTYSH_BABELD |      \  		VTYSH_SHARPD | VTYSH_PBRD | VTYSH_STATICD | VTYSH_BFDD |       \  		VTYSH_FABRICD | VTYSH_VRRPD | VTYSH_PATHD | VTYSH_MGMTD -#define VTYSH_ACL         VTYSH_BFDD|VTYSH_BABELD|VTYSH_BGPD|VTYSH_EIGRPD|VTYSH_ISISD|VTYSH_FABRICD|VTYSH_LDPD|VTYSH_NHRPD|VTYSH_OSPF6D|VTYSH_OSPFD|VTYSH_PBRD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_VRRPD|VTYSH_ZEBRA +#define VTYSH_ACL_CONFIG                                                       \ +	VTYSH_BFDD | VTYSH_BABELD | VTYSH_BGPD | VTYSH_EIGRPD | VTYSH_ISISD |  \ +		VTYSH_FABRICD | VTYSH_LDPD | VTYSH_NHRPD | VTYSH_OSPF6D |      \ +		VTYSH_OSPFD | VTYSH_PBRD | VTYSH_PIMD | VTYSH_PIM6D |          \ +		VTYSH_RIPNGD | VTYSH_VRRPD | VTYSH_ZEBRA | VTYSH_MGMTD +#define VTYSH_ACL_SHOW                                                         \ +	VTYSH_BFDD | VTYSH_BABELD | VTYSH_BGPD | VTYSH_EIGRPD | VTYSH_ISISD |  \ +		VTYSH_FABRICD | VTYSH_LDPD | VTYSH_NHRPD | VTYSH_OSPF6D |      \ +		VTYSH_OSPFD | VTYSH_PBRD | VTYSH_PIMD | VTYSH_PIM6D |          \ +		VTYSH_RIPD | VTYSH_RIPNGD | VTYSH_VRRPD | VTYSH_ZEBRA +  #define VTYSH_AFFMAP VTYSH_ZEBRA | VTYSH_ISISD  #define VTYSH_RMAP_CONFIG                                                      \  	VTYSH_ZEBRA | VTYSH_RIPNGD | VTYSH_OSPFD | VTYSH_OSPF6D | VTYSH_BGPD | \  | 
