diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-18 14:12:39 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-25 01:54:04 +0200 |
commit | 3a3a24c869a34ddee9a77e4dd89e019d88323ef2 (patch) | |
tree | 06d20e21e1592350ae0c4ddd33e2b2350fdf9ef2 /vtysh/vtysh.h | |
parent | Merge pull request #3222 from srimohans/community (diff) | |
download | frr-3a3a24c869a34ddee9a77e4dd89e019d88323ef2.tar.xz frr-3a3a24c869a34ddee9a77e4dd89e019d88323ef2.zip |
vtysh: Allow eigrp and rip access to keychain.c config
The key-chain code was specific to rip and as such was not
being delivered to eigrp.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'vtysh/vtysh.h')
-rw-r--r-- | vtysh/vtysh.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index ee980d512..430b117c5 100644 --- a/vtysh/vtysh.h +++ b/vtysh/vtysh.h @@ -55,6 +55,7 @@ DECLARE_MGROUP(MVTYSH) #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 #define VTYSH_NS VTYSH_ZEBRA #define VTYSH_VRF VTYSH_ZEBRA|VTYSH_PIMD|VTYSH_STATICD +#define VTYSH_KEYS VTYSH_RIPD|VTYSH_EIGRPD enum vtysh_write_integrated { WRITE_INTEGRATED_UNSPECIFIED, |