mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-29 21:23:06 +00:00
bgpd: bgpd-fix-ipv6-afi-parser-node.patch
BGPd: Make ipv6 unicast/multicast address-family work In the absence of this patch, attempting to type "address-family ipv6 unicast" would result in an "Ambiguous command" error and in the case of "address-family ipv6 multicast", the command would silently fail, without the prompt dropping into the address-family mode. The cause is how the parse tree is constructed for ipv6 address family. There was an error in extract.pl.in script and in vtysh.c files which assumed that there was only address family ipv6 command, without unicast or multicast and so the command was failing.
This commit is contained in:
parent
5ce10e9251
commit
01a2af4562
@ -45,7 +45,7 @@ $ignore{'"router zebra"'} = "ignore";
|
||||
$ignore{'"address-family ipv4"'} = "ignore";
|
||||
$ignore{'"address-family ipv4 (unicast|multicast)"'} = "ignore";
|
||||
$ignore{'"address-family ipv6"'} = "ignore";
|
||||
$ignore{'"address-family ipv6 unicast"'} = "ignore";
|
||||
$ignore{'"address-family ipv6 (unicast|multicast)"'} = "ignore";
|
||||
$ignore{'"address-family vpnv4"'} = "ignore";
|
||||
$ignore{'"address-family vpnv4 unicast"'} = "ignore";
|
||||
$ignore{'"address-family ipv4 vrf NAME"'} = "ignore";
|
||||
|
@ -2382,6 +2382,7 @@ vtysh_init_vty (void)
|
||||
#ifdef HAVE_IPV6
|
||||
install_element (BGP_NODE, &address_family_ipv6_cmd);
|
||||
install_element (BGP_NODE, &address_family_ipv6_unicast_cmd);
|
||||
install_element (BGP_NODE, &address_family_ipv6_multicast_cmd);
|
||||
#endif
|
||||
install_element (BGP_VPNV4_NODE, &exit_address_family_cmd);
|
||||
install_element (BGP_IPV4_NODE, &exit_address_family_cmd);
|
||||
|
Loading…
Reference in New Issue
Block a user