]> git.puffer.fish Git - mirror/frr.git/commitdiff
2003-07-12 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Sat, 12 Jul 2003 21:43:01 +0000 (21:43 +0000)
committerpaul <paul>
Sat, 12 Jul 2003 21:43:01 +0000 (21:43 +0000)
* bgp_vty.c: install the neighbor_set_peer_group_cmd,
  neighbor_soft_reconfiguration_cmd and neighbor_unsuppress_map_cmd
  family of commands into the VPNv4 address family config node.

bgpd/bgp_vty.c

index c1bae93ef9f600ee317823f2a2b4a8ddca7fba19..6514ac2218e3d0f4b862596aa49ed103abb28935 100644 (file)
@@ -7800,13 +7800,15 @@ bgp_vty_init ()
   install_element (BGP_IPV4_NODE, &neighbor_set_peer_group_cmd);
   install_element (BGP_IPV4M_NODE, &neighbor_set_peer_group_cmd);
   install_element (BGP_IPV6_NODE, &neighbor_set_peer_group_cmd);
-
+  install_element (BGP_VPNV4_NODE, &neighbor_set_peer_group_cmd);
+  
   /* "no neighbor peer-group unset" commands. */
   install_element (BGP_NODE, &no_neighbor_set_peer_group_cmd);
   install_element (BGP_IPV4_NODE, &no_neighbor_set_peer_group_cmd);
   install_element (BGP_IPV4M_NODE, &no_neighbor_set_peer_group_cmd);
   install_element (BGP_IPV6_NODE, &no_neighbor_set_peer_group_cmd);
-
+  install_element (BGP_VPNV4_NODE, &no_neighbor_set_peer_group_cmd);
+  
   /* "neighbor softreconfiguration inbound" commands.*/
   install_element (BGP_NODE, &neighbor_soft_reconfiguration_cmd);
   install_element (BGP_NODE, &no_neighbor_soft_reconfiguration_cmd);
@@ -7816,6 +7818,8 @@ bgp_vty_init ()
   install_element (BGP_IPV4M_NODE, &no_neighbor_soft_reconfiguration_cmd);
   install_element (BGP_IPV6_NODE, &neighbor_soft_reconfiguration_cmd);
   install_element (BGP_IPV6_NODE, &no_neighbor_soft_reconfiguration_cmd);
+  install_element (BGP_VPNV4_NODE, &neighbor_soft_reconfiguration_cmd);
+  install_element (BGP_VPNV4_NODE, &no_neighbor_soft_reconfiguration_cmd);
 
   /* "neighbor attribute-unchanged" commands.  */
   install_element (BGP_NODE, &neighbor_attr_unchanged_cmd);
@@ -8168,6 +8172,8 @@ bgp_vty_init ()
   install_element (BGP_IPV4M_NODE, &no_neighbor_unsuppress_map_cmd);
   install_element (BGP_IPV6_NODE, &neighbor_unsuppress_map_cmd);
   install_element (BGP_IPV6_NODE, &no_neighbor_unsuppress_map_cmd);
+  install_element (BGP_VPNV4_NODE, &neighbor_unsuppress_map_cmd);
+  install_element (BGP_VPNV4_NODE, &no_neighbor_unsuppress_map_cmd);  
 
   /* "neighbor maximum-prefix" commands. */
   install_element (BGP_NODE, &neighbor_maximum_prefix_cmd);