diff options
author | Christian Franke <chris@opensourcerouting.org> | 2018-02-26 18:22:36 +0100 |
---|---|---|
committer | Christian Franke <chris@opensourcerouting.org> | 2018-02-27 15:34:21 +0100 |
commit | 1753f727b7fc3b2a1638eae2a49e0c931964c851 (patch) | |
tree | f3a4bcd44a126e107c45454e3334c54badb83638 /vtysh/vtysh.h | |
parent | Merge pull request #1764 from Orange-OpenSource/SR-dev (diff) | |
download | frr-1753f727b7fc3b2a1638eae2a49e0c931964c851.tar.xz frr-1753f727b7fc3b2a1638eae2a49e0c931964c851.zip |
vtysh: pass route-map & prefix-list commands to isisd and sharpd
Use VTYSH_RMAP in extract.pl instead of having two lists,
and add isisd and sharpd to VTYSH_RMAP.
Diffstat (limited to '')
-rw-r--r-- | vtysh/vtysh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index ab1318209..f9b07beb7 100644 --- a/vtysh/vtysh.h +++ b/vtysh/vtysh.h @@ -46,7 +46,7 @@ DECLARE_MGROUP(MVTYSH) * 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 -#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_PIMD|VTYSH_EIGRPD +#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_SHARPD #define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_PIMD|VTYSH_NHRPD|VTYSH_EIGRPD|VTYSH_BABELD #define VTYSH_NS VTYSH_ZEBRA #define VTYSH_VRF VTYSH_ZEBRA|VTYSH_PIMD |