diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-02-28 10:26:22 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-28 10:26:22 +0100 | 
| commit | d7da6520e96418b37878b90d6b7696595870110a (patch) | |
| tree | 3dc29be55e320f4c14d1731ef5c43e22918a9623 /vtysh/vtysh.h | |
| parent | ae45a630222b53b02d8fc7cd84bb24d8744cd09c (diff) | |
| parent | e8515e32a484cad42f4e0f3ef817fdd9aaa99e75 (diff) | |
Merge pull request #10376 from patrasar/master_pimv6_vtysh
Diffstat (limited to 'vtysh/vtysh.h')
| -rw-r--r-- | vtysh/vtysh.h | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index 66af248354..757b832a90 100644 --- a/vtysh/vtysh.h +++ b/vtysh/vtysh.h @@ -44,6 +44,7 @@ DECLARE_MGROUP(MVTYSH);  #define VTYSH_FABRICD   0x20000  #define VTYSH_VRRPD     0x40000  #define VTYSH_PATHD     0x80000 +#define VTYSH_PIM6D     0x100000  #define VTYSH_WAS_ACTIVE (-2) @@ -52,10 +53,10 @@ DECLARE_MGROUP(MVTYSH);  /* watchfrr is not in ALL since library CLI functions should not be   * run on it (logging & co. should stay in a fixed/frozen config, and   * things like prefix lists are not even initialised) */ -#define VTYSH_ALL	  VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_SHARPD|VTYSH_PBRD|VTYSH_STATICD|VTYSH_BFDD|VTYSH_FABRICD|VTYSH_VRRPD|VTYSH_PATHD -#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_RIPD|VTYSH_RIPNGD|VTYSH_VRRPD|VTYSH_ZEBRA -#define VTYSH_RMAP	  VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_FABRICD -#define VTYSH_INTERFACE	  VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_PBRD|VTYSH_FABRICD|VTYSH_VRRPD +#define VTYSH_ALL        VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_LDPD|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_SHARPD|VTYSH_PBRD|VTYSH_STATICD|VTYSH_BFDD|VTYSH_FABRICD|VTYSH_VRRPD|VTYSH_PATHD +#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_RMAP       VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_EIGRPD|VTYSH_FABRICD +#define VTYSH_INTERFACE          VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_PBRD|VTYSH_FABRICD|VTYSH_VRRPD  #define VTYSH_VRF	  VTYSH_INTERFACE|VTYSH_STATICD  #define VTYSH_KEYS VTYSH_RIPD | VTYSH_EIGRPD | VTYSH_OSPF6D  /* Daemons who can process nexthop-group configs */  | 
