• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/

Lines Matching refs:bgp

86   struct bgp *bgp;
90 bgp = vty->index;
105 peer = peer_lookup (bgp, &su);
119 struct bgp *bgp;
124 bgp = vty->index;
135 peer = peer_lookup (bgp, &su);
141 group = peer_group_lookup (bgp, peer_str);
226 "bgp multiple-instance",
228 "Enable bgp multiple instance\n")
236 "no bgp multiple-instance",
254 "bgp config-type (cisco|zebra)",
270 "no bgp config-type",
298 /* "router bgp" commands. */
301 "router bgp <1-65535>",
308 struct bgp *bgp;
316 ret = bgp_get (&bgp, &as, name);
320 vty_out (vty, "Please specify 'bgp multiple-instance' first%s",
337 vty->index = bgp;
344 "router bgp <1-65535> view WORD",
352 /* "no router bgp" commands. */
355 "no router bgp <1-65535>",
362 struct bgp *bgp;
370 /* Lookup bgp structure. */
371 bgp = bgp_lookup (as, name);
372 if (! bgp)
378 bgp_delete (bgp);
385 "no router bgp <1-65535> view WORD",
398 "bgp router-id A.B.C.D",
405 struct bgp *bgp;
407 bgp = vty->index;
412 vty_out (vty, "%% Malformed bgp router identifier%s", VTY_NEWLINE);
416 bgp_router_id_set (bgp, &id);
423 "no bgp router-id",
430 struct bgp *bgp;
432 bgp = vty->index;
443 if (! IPV4_ADDR_SAME (&bgp->router_id, &id))
450 bgp_router_id_unset (bgp);
457 "no bgp router-id A.B.C.D",
468 "bgp cluster-id A.B.C.D",
474 struct bgp *bgp;
477 bgp = vty->index;
482 vty_out (vty, "%% Malformed bgp cluster identifier%s", VTY_NEWLINE);
486 bgp_cluster_id_set (bgp, &cluster);
493 "bgp cluster-id <1-4294967295>",
500 "no bgp cluster-id",
506 struct bgp *bgp;
509 bgp = vty->index;
516 vty_out (vty, "%% Malformed bgp cluster identifier%s", VTY_NEWLINE);
521 bgp_cluster_id_unset (bgp);
528 "no bgp cluster-id A.B.C.D",
537 "bgp confederation identifier <1-65535>",
543 struct bgp *bgp;
546 bgp = vty->index;
550 bgp_confederation_id_set (bgp, as);
557 "no bgp confederation identifier",
563 struct bgp *bgp;
566 bgp = vty->index;
571 bgp_confederation_id_unset (bgp);
578 "no bgp confederation identifier <1-65535>",
588 "bgp confederation peers .<1-65535>",
594 struct bgp *bgp;
598 bgp = vty->index;
604 if (bgp->as == as)
611 bgp_confederation_peers_add (bgp, as);
618 "no bgp confederation peers .<1-65535>",
625 struct bgp *bgp;
629 bgp = vty->index;
635 bgp_confederation_peers_remove (bgp, as);
645 "timers bgp <0-65535> <0-65535>",
651 struct bgp *bgp;
655 bgp = vty->index;
668 bgp_timers_set (bgp, keepalive, holdtime);
675 "no timers bgp",
680 struct bgp *bgp;
682 bgp = vty->index;
683 bgp_timers_unset (bgp);
690 "no timers bgp <0-65535> <0-65535>",
700 "bgp client-to-client reflection",
705 struct bgp *bgp;
707 bgp = vty->index;
708 bgp_flag_unset (bgp, BGP_FLAG_NO_CLIENT_TO_CLIENT);
714 "no bgp client-to-client reflection",
720 struct bgp *bgp;
722 bgp = vty->index;
723 bgp_flag_set (bgp, BGP_FLAG_NO_CLIENT_TO_CLIENT);
727 /* "bgp always-compare-med" configuration. */
730 "bgp always-compare-med",
734 struct bgp *bgp;
736 bgp = vty->index;
737 bgp_flag_set (bgp, BGP_FLAG_ALWAYS_COMPARE_MED);
743 "no bgp always-compare-med",
748 struct bgp *bgp;
750 bgp = vty->index;
751 bgp_flag_unset (bgp, BGP_FLAG_ALWAYS_COMPARE_MED);
756 /* "bgp deterministic-med" configuration. */
759 "bgp deterministic-med",
763 struct bgp *bgp;
765 bgp = vty->index;
766 bgp_flag_set (bgp, BGP_FLAG_DETERMINISTIC_MED);
772 "no bgp deterministic-med",
777 struct bgp *bgp;
779 bgp = vty->index;
780 bgp_flag_unset (bgp, BGP_FLAG_DETERMINISTIC_MED);
785 /* "bgp fast-external-failover" configuration. */
788 "bgp fast-external-failover",
792 struct bgp *bgp;
794 bgp = vty->index;
795 bgp_flag_unset (bgp, BGP_FLAG_NO_FAST_EXT_FAILOVER);
801 "no bgp fast-external-failover",
806 struct bgp *bgp;
808 bgp = vty->index;
809 bgp_flag_set (bgp, BGP_FLAG_NO_FAST_EXT_FAILOVER);
814 /* "bgp enforce-first-as" configuration. */
817 "bgp enforce-first-as",
821 struct bgp *bgp;
823 bgp = vty->index;
824 bgp_flag_set (bgp, BGP_FLAG_ENFORCE_FIRST_AS);
830 "no bgp enforce-first-as",
835 struct bgp *bgp;
837 bgp = vty->index;
838 bgp_flag_unset (bgp, BGP_FLAG_ENFORCE_FIRST_AS);
843 /* "bgp bestpath compare-routerid" configuration. */
846 "bgp bestpath compare-routerid",
851 struct bgp *bgp;
853 bgp = vty->index;
854 bgp_flag_set (bgp, BGP_FLAG_COMPARE_ROUTER_ID);
860 "no bgp bestpath compare-routerid",
866 struct bgp *bgp;
868 bgp = vty->index;
869 bgp_flag_unset (bgp, BGP_FLAG_COMPARE_ROUTER_ID);
874 /* "bgp bestpath as-path ignore" configuration. */
877 "bgp bestpath as-path ignore",
883 struct bgp *bgp;
885 bgp = vty->index;
886 bgp_flag_set (bgp, BGP_FLAG_ASPATH_IGNORE);
892 "no bgp bestpath as-path ignore",
899 struct bgp *bgp;
901 bgp = vty->index;
902 bgp_flag_unset (bgp, BGP_FLAG_ASPATH_IGNORE);
907 /* "bgp bestpath med" configuration. */
910 "bgp bestpath med (confed|missing-as-worst)",
917 struct bgp *bgp;
919 bgp = vty->index;
922 bgp_flag_set (bgp, BGP_FLAG_MED_CONFED);
924 bgp_flag_set (bgp, BGP_FLAG_MED_MISSING_AS_WORST);
931 "bgp bestpath med confed missing-as-worst",
938 struct bgp *bgp;
940 bgp = vty->index;
941 bgp_flag_set (bgp, BGP_FLAG_MED_CONFED);
942 bgp_flag_set (bgp, BGP_FLAG_MED_MISSING_AS_WORST);
948 "bgp bestpath med missing-as-worst confed",
957 "no bgp bestpath med (confed|missing-as-worst)",
965 struct bgp *bgp;
967 bgp = vty->index;
970 bgp_flag_unset (bgp, BGP_FLAG_MED_CONFED);
972 bgp_flag_unset (bgp, BGP_FLAG_MED_MISSING_AS_WORST);
979 "no bgp bestpath med confed missing-as-worst",
987 struct bgp *bgp;
989 bgp = vty->index;
990 bgp_flag_unset (bgp, BGP_FLAG_MED_CONFED);
991 bgp_flag_unset (bgp, BGP_FLAG_MED_MISSING_AS_WORST);
997 "no bgp bestpath med missing-as-worst confed",
1006 /* "no bgp default ipv4-unicast". */
1009 "no bgp default ipv4-unicast",
1015 struct bgp *bgp;
1017 bgp = vty->index;
1018 bgp_flag_set (bgp, BGP_FLAG_NO_DEFAULT_IPV4);
1024 "bgp default ipv4-unicast",
1029 struct bgp *bgp;
1031 bgp = vty->index;
1032 bgp_flag_unset (bgp, BGP_FLAG_NO_DEFAULT_IPV4);
1037 /* "bgp import-check" configuration. */
1040 "bgp network import-check",
1045 struct bgp *bgp;
1047 bgp = vty->index;
1048 bgp_flag_set (bgp, BGP_FLAG_IMPORT_CHECK);
1054 "no bgp network import-check",
1060 struct bgp *bgp;
1062 bgp = vty->index;
1063 bgp_flag_unset (bgp, BGP_FLAG_IMPORT_CHECK);
1070 "bgp default local-preference <0-4294967295>",
1076 struct bgp *bgp;
1079 bgp = vty->index;
1083 bgp_default_local_preference_set (bgp, local_pref);
1090 "no bgp default local-preference",
1096 struct bgp *bgp;
1098 bgp = vty->index;
1099 bgp_default_local_preference_unset (bgp);
1105 "no bgp default local-preference <0-4294967295>",
1118 struct bgp *bgp;
1122 bgp = vty->index;
1131 ret = peer_group_remote_as (bgp, peer_str, &as);
1146 ret = peer_remote_as (bgp, &su, &as, afi, safi);
1182 struct bgp *bgp;
1185 bgp = vty->index;
1187 group = peer_group_get (bgp, argv[0]);
1417 struct bgp *bgp;
1420 bgp = vty->index;
1429 group = peer_group_lookup (bgp, argv[1]);
1436 ret = peer_group_bind (bgp, &su, group, bgp_node_afi (vty),
1458 struct bgp *bgp;
1462 bgp = vty->index;
1468 group = peer_group_lookup (bgp, argv[1]);
1475 ret = peer_group_unbind (bgp, peer, group, bgp_node_afi (vty),
2603 sp = getservbyname ("bgp", "tcp");
3665 /* `clear ip bgp' functions. */
3667 bgp_clear (struct vty *vty, struct bgp *bgp, afi_t afi, safi_t safi,
3677 LIST_LOOP (bgp->peer, peer, nn)
3703 peer = peer_lookup (bgp, &su);
3726 group = peer_group_lookup (bgp, arg);
3754 LIST_LOOP (bgp->peer, peer, nn)
3786 LIST_LOOP (bgp->peer, peer, nn)
3814 struct bgp *bgp;
3819 bgp = bgp_lookup_by_name (name);
3820 if (bgp == NULL)
3828 bgp = bgp_get_default ();
3829 if (bgp == NULL)
3836 ret = bgp_clear (vty, bgp, afi, safi, sort, stype, arg);
3845 "clear ip bgp *",
3859 "clear bgp *",
3866 "clear bgp ipv6 *",
3874 "clear ip bgp view WORD *",
3884 "clear bgp view WORD *",
3893 "clear ip bgp (A.B.C.D|X:X::X:X)",
3905 "clear bgp (A.B.C.D|X:X::X:X)",
3913 "clear bgp ipv6 (A.B.C.D|X:X::X:X)",
3922 "clear ip bgp peer-group WORD",
3934 "clear bgp peer-group WORD",
3942 "clear bgp ipv6 peer-group WORD",
3951 "clear ip bgp external",
3962 "clear bgp external",
3969 "clear bgp ipv6 external",
3977 "clear ip bgp <1-65535>",
3988 "clear bgp <1-65535>",
3995 "clear bgp ipv6 <1-65535>",
4005 "clear ip bgp * soft out",
4023 "clear ip bgp * out",
4032 "clear ip bgp view WORD * soft out",
4044 "clear ip bgp * ipv4 (unicast|multicast) soft out",
4065 "clear ip bgp * ipv4 (unicast|multicast) out",
4077 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft out",
4099 "clear ip bgp * vpnv4 unicast soft out",
4115 "clear ip bgp * vpnv4 unicast out",
4126 "clear bgp * soft out",
4143 "clear bgp view WORD * soft out",
4154 "clear bgp * out",
4162 "clear bgp ipv6 * soft out",
4172 "clear bgp ipv6 * out",
4181 "clear ip bgp A.B.C.D soft out",
4195 "clear ip bgp A.B.C.D out",
4204 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft out",
4225 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) out",
4237 "clear ip bgp A.B.C.D vpnv4 unicast soft out",
4253 "clear ip bgp A.B.C.D vpnv4 unicast out",
4264 "clear bgp (A.B.C.D|X:X::X:X) soft out",
4278 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft out",
4289 "clear bgp (A.B.C.D|X:X::X:X) out",
4298 "clear bgp ipv6 (A.B.C.D|X:X::X:X) out",
4308 "clear ip bgp peer-group WORD soft out",
4323 "clear ip bgp peer-group WORD out",
4333 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft out",
4355 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) out",
4368 "clear bgp peer-group WORD soft out",
4382 "clear bgp ipv6 peer-group WORD soft out",
4393 "clear bgp peer-group WORD out",
4402 "clear bgp ipv6 peer-group WORD out",
4412 "clear ip bgp external soft out",
4426 "clear ip bgp external out",
4435 "clear ip bgp external ipv4 (unicast|multicast) soft out",
4456 "clear ip bgp external ipv4 (unicast|multicast) out",
4468 "clear bgp external soft out",
4481 "clear bgp ipv6 external soft out",
4491 "clear bgp external out",
4499 "clear bgp ipv6 external WORD out",
4508 "clear ip bgp <1-65535> soft out",
4522 "clear ip bgp <1-65535> out",
4531 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft out",
4552 "clear ip bgp <1-65535> ipv4 (unicast|multicast) out",
4564 "clear ip bgp <1-65535> vpnv4 unicast soft out",
4580 "clear ip bgp <1-65535> vpnv4 unicast out",
4591 "clear bgp <1-65535> soft out",
4604 "clear bgp ipv6 <1-65535> soft out",
4614 "clear bgp <1-65535> out",
4622 "clear bgp ipv6 <1-65535> out",
4633 "clear ip bgp * soft in",
4651 "clear ip bgp view WORD * soft in",
4663 "clear ip bgp * in",
4672 "clear ip bgp * in prefix-filter",
4690 "clear ip bgp view WORD * in prefix-filter",
4703 "clear ip bgp * ipv4 (unicast|multicast) soft in",
4724 "clear ip bgp * ipv4 (unicast|multicast) in",
4736 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft in",
4759 "clear ip bgp * ipv4 (unicast|multicast) in prefix-filter",
4780 "clear ip bgp view WORD * ipv4 (unicast|multicast) in prefix-filter",
4801 "clear ip bgp * vpnv4 unicast soft in",
4817 "clear ip bgp * vpnv4 unicast in",
4828 "clear bgp * soft in",
4845 "clear bgp view WORD * soft in",
4856 "clear bgp ipv6 * soft in",
4866 "clear bgp * in",
4874 "clear bgp ipv6 * in",
4883 "clear bgp * in prefix-filter",
4896 "clear bgp ipv6 * in prefix-filter",
4906 "clear ip bgp A.B.C.D soft in",
4920 "clear ip bgp A.B.C.D in",
4929 "clear ip bgp A.B.C.D in prefix-filter",
4943 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft in",
4964 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in",
4976 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) in prefix-filter",
4997 "clear ip bgp A.B.C.D vpnv4 unicast soft in",
5013 "clear ip bgp A.B.C.D vpnv4 unicast in",
5024 "clear bgp (A.B.C.D|X:X::X:X) soft in",
5038 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft in",
5049 "clear bgp (A.B.C.D|X:X::X:X) in",
5058 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in",
5068 "clear bgp (A.B.C.D|X:X::X:X) in prefix-filter",
5082 "clear bgp ipv6 (A.B.C.D|X:X::X:X) in prefix-filter",
5093 "clear ip bgp peer-group WORD soft in",
5108 "clear ip bgp peer-group WORD in",
5118 "clear ip bgp peer-group WORD in prefix-filter",
5133 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft in",
5155 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in",
5168 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) in prefix-filter",
5190 "clear bgp peer-group WORD soft in",
5204 "clear bgp ipv6 peer-group WORD soft in",
5215 "clear bgp peer-group WORD in",
5224 "clear bgp ipv6 peer-group WORD in",
5234 "clear bgp peer-group WORD in prefix-filter",
5248 "clear bgp ipv6 peer-group WORD in prefix-filter",
5259 "clear ip bgp external soft in",
5273 "clear ip bgp external in",
5282 "clear ip bgp external in prefix-filter",
5296 "clear ip bgp external ipv4 (unicast|multicast) soft in",
5317 "clear ip bgp external ipv4 (unicast|multicast) in",
5329 "clear ip bgp external ipv4 (unicast|multicast) in prefix-filter",
5350 "clear bgp external soft in",
5363 "clear bgp ipv6 external soft in",
5373 "clear bgp external in",
5381 "clear bgp ipv6 external WORD in",
5390 "clear bgp external in prefix-filter",
5403 "clear bgp ipv6 external in prefix-filter",
5413 "clear ip bgp <1-65535> soft in",
5427 "clear ip bgp <1-65535> in",
5436 "clear ip bgp <1-65535> in prefix-filter",
5450 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft in",
5471 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in",
5483 "clear ip bgp <1-65535> ipv4 (unicast|multicast) in prefix-filter",
5504 "clear ip bgp <1-65535> vpnv4 unicast soft in",
5520 "clear ip bgp <1-65535> vpnv4 unicast in",
5531 "clear bgp <1-65535> soft in",
5544 "clear bgp ipv6 <1-65535> soft in",
5554 "clear bgp <1-65535> in",
5562 "clear bgp ipv6 <1-65535> in",
5571 "clear bgp <1-65535> in prefix-filter",
5584 "clear bgp ipv6 <1-65535> in prefix-filter",
5596 "clear ip bgp * soft",
5613 "clear ip bgp view WORD * soft",
5625 "clear ip bgp * ipv4 (unicast|multicast) soft",
5645 "clear ip bgp view WORD * ipv4 (unicast|multicast) soft",
5667 "clear ip bgp * vpnv4 unicast soft",
5682 "clear bgp * soft",
5698 "clear bgp view WORD * soft",
5708 "clear bgp ipv6 * soft",
5717 "clear ip bgp A.B.C.D soft",
5730 "clear ip bgp A.B.C.D ipv4 (unicast|multicast) soft",
5750 "clear ip bgp A.B.C.D vpnv4 unicast soft",
5765 "clear bgp (A.B.C.D|X:X::X:X) soft",
5778 "clear bgp ipv6 (A.B.C.D|X:X::X:X) soft",
5788 "clear ip bgp peer-group WORD soft",
5802 "clear ip bgp peer-group WORD ipv4 (unicast|multicast) soft",
5823 "clear bgp peer-group WORD soft",
5836 "clear bgp ipv6 peer-group WORD soft",
5846 "clear ip bgp external soft",
5859 "clear ip bgp external ipv4 (unicast|multicast) soft",
5879 "clear bgp external soft",
5891 "clear bgp ipv6 external soft",
5900 "clear ip bgp <1-65535> soft",
5913 "clear ip bgp <1-65535> ipv4 (unicast|multicast) soft",
5933 "clear ip bgp <1-65535> vpnv4 unicast soft",
5948 "clear bgp <1-65535> soft",
5960 "clear bgp ipv6 <1-65535> soft",
5970 bgp_show_summary (struct vty *vty, struct bgp *bgp, int afi, int safi)
5981 LIST_LOOP (bgp->peer, peer, nn)
5989 inet_ntoa (bgp->router_id), bgp->as, VTY_NEWLINE);
5997 if (CHECK_FLAG(bgp->af_flags[afi][safi], BGP_CONFIG_DAMPENING))
6062 struct bgp *bgp;
6066 bgp = bgp_lookup_by_name (name);
6068 if (! bgp)
6074 bgp_show_summary (vty, bgp, afi, safi);
6078 bgp = bgp_get_default ();
6080 if (bgp)
6081 bgp_show_summary (vty, bgp, afi, safi);
6086 /* `show ip bgp summary' commands. */
6089 "show ip bgp summary",
6100 "show ip bgp view WORD summary",
6113 "show ip bgp ipv4 (unicast|multicast) summary",
6130 "show ip bgp view WORD ipv4 (unicast|multicast) summary",
6149 "show ip bgp vpnv4 all summary",
6162 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn summary",
6187 "show bgp summary",
6197 "show bgp view WORD summary",
6209 "show bgp ipv6 summary",
6217 "show bgp view WORD ipv6 summary",
6228 "show ipv6 bgp summary",
6487 struct bgp *bgp;
6491 bgp = p->bgp;
6526 if (bgp_confederation_peers_check (bgp, p->as))
6741 vty_out (vty, " Reduce the no. of prefix and clear ip bgp %s to restore peering%s",
6810 bgp_show_neighbor (struct vty *vty, struct bgp *bgp,
6817 LIST_LOOP (bgp->peer, peer, nn)
6845 struct bgp *bgp;
6860 bgp = bgp_lookup_by_name (name);
6862 if (! bgp)
6868 bgp_show_neighbor (vty, bgp, type, &su);
6873 bgp = bgp_get_default ();
6875 if (bgp)
6876 bgp_show_neighbor (vty, bgp, type, &su);
6881 /* "show ip bgp neighbors" commands. */
6884 "show ip bgp neighbors",
6895 "show ip bgp ipv4 (unicast|multicast) neighbors",
6906 "show ip bgp vpnv4 all neighbors",
6916 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors",
6927 "show bgp neighbors",
6934 "show bgp ipv6 neighbors",
6942 "show ip bgp neighbors (A.B.C.D|X:X::X:X)",
6955 "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X)",
6968 "show ip bgp vpnv4 all neighbors A.B.C.D",
6979 "show ip bgp vpnv4 rd ASN:nn_or_IP-address:nn neighbors A.B.C.D",
6990 "show bgp neighbors (A.B.C.D|X:X::X:X)",
6999 "show bgp ipv6 neighbors (A.B.C.D|X:X::X:X)",
7009 "show ip bgp view WORD neighbors",
7022 "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X)",
7036 /* Show BGP's AS paths internal data. There are both `show ip bgp
7041 "show ip bgp paths",
7054 "show ip bgp ipv4 (unicast|multicast) paths",
7085 "show ip bgp community-info",
7089 "List all bgp community information\n")
7103 "show ip bgp attribute-info",
7107 "List all bgp attribute information\n")
7663 bgp_config_write_redistribute (struct vty *vty, struct bgp *bgp, afi_t afi,
7668 "ripng", "ospf", "ospf6", "bgp"};
7677 if (bgp->redist[afi][i] && i != ZEBRA_ROUTE_BGP)
7685 if (bgp->redist_metric_flag[afi][i])
7686 vty_out (vty, " metric %d", bgp->redist_metric[afi][i]);
7688 if (bgp->rmap[afi][i].name)
7689 vty_out (vty, " route-map %s", bgp->rmap[afi][i].name);
7741 /* Install bgp top node. */
7755 /* "bgp multiple-instance" commands. */
7759 /* "bgp config-type" commands. */
7767 /* "router bgp" commands. */
7771 /* "no router bgp" commands. */
7775 /* "bgp router-id" commands. */
7780 /* "bgp cluster-id" commands. */
7786 /* "bgp confederation" commands. */
7791 /* "bgp confederation peers" commands. */
7795 /* "timers bgp" commands. */
7800 /* "bgp client-to-client reflection" commands */
7804 /* "bgp always-compare-med" commands */
7808 /* "bgp deterministic-med" commands */
7812 /* "bgp fast-external-failover" commands */
7816 /* "bgp enforce-first-as" commands */
7820 /* "bgp bestpath compare-routerid" commands */
7824 /* "bgp bestpath as-path ignore" commands */
7828 /* "bgp bestpath med" commands */
7836 /* "no bgp default ipv4-unicast" commands. */
7840 /* "bgp network import-check" commands. */
7844 /* "bgp default local-preference" commands. */
8314 /* "clear ip bgp commands" */
8335 /* "clear ip bgp neighbor soft in" */
8410 /* "clear ip bgp neighbor soft out" */
8463 /* "clear ip bgp neighbor soft" */
8493 /* "show ip bgp summary" commands. */
8519 /* "show ip bgp neighbors" commands. */
8558 /* "show ip bgp paths" commands. */
8564 /* "show ip bgp community" commands. */
8568 /* "show ip bgp attribute-info" commands. */