mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 22:10:19 +00:00
* bgp_vty.c: Deprecate "neighbor transparent-as" and "neighbor
transparent-nexthop" commands. [merge from GNU Zebra]
This commit is contained in:
parent
c1643bb7d7
commit
dd4c593fb8
@ -1,3 +1,8 @@
|
||||
2005-02-02 Akihiro Mizutani <mizutani@net-chef.net>
|
||||
|
||||
* bgp_vty.c: Deprecate "neighbor transparent-as" and "neighbor
|
||||
transparent-nexthop" commands.
|
||||
|
||||
2005-02-02 Akihiro Mizutani <mizutani@net-chef.net>
|
||||
|
||||
* bgp_routemap.c: New route-map command - "match ip route-source".
|
||||
|
@ -2502,24 +2502,24 @@ ALIAS (no_neighbor_attr_unchanged,
|
||||
"Nexthop attribute\n")
|
||||
|
||||
/* For old version Zebra compatibility. */
|
||||
DEFUN (neighbor_transparent_as,
|
||||
neighbor_transparent_as_cmd,
|
||||
NEIGHBOR_CMD "transparent-as",
|
||||
NEIGHBOR_STR
|
||||
NEIGHBOR_ADDR_STR
|
||||
"Do not append my AS number even peer is EBGP peer\n")
|
||||
DEFUN_DEPRECATED (neighbor_transparent_as,
|
||||
neighbor_transparent_as_cmd,
|
||||
NEIGHBOR_CMD "transparent-as",
|
||||
NEIGHBOR_STR
|
||||
NEIGHBOR_ADDR_STR
|
||||
"Do not append my AS number even peer is EBGP peer\n")
|
||||
{
|
||||
return peer_af_flag_set_vty (vty, argv[0], bgp_node_afi (vty),
|
||||
bgp_node_safi (vty),
|
||||
PEER_FLAG_AS_PATH_UNCHANGED);
|
||||
}
|
||||
|
||||
DEFUN (neighbor_transparent_nexthop,
|
||||
neighbor_transparent_nexthop_cmd,
|
||||
NEIGHBOR_CMD "transparent-nexthop",
|
||||
NEIGHBOR_STR
|
||||
NEIGHBOR_ADDR_STR
|
||||
"Do not change nexthop even peer is EBGP peer\n")
|
||||
DEFUN_DEPRECATED (neighbor_transparent_nexthop,
|
||||
neighbor_transparent_nexthop_cmd,
|
||||
NEIGHBOR_CMD "transparent-nexthop",
|
||||
NEIGHBOR_STR
|
||||
NEIGHBOR_ADDR_STR
|
||||
"Do not change nexthop even peer is EBGP peer\n")
|
||||
{
|
||||
return peer_af_flag_set_vty (vty, argv[0], bgp_node_afi (vty),
|
||||
bgp_node_safi (vty),
|
||||
|
Loading…
Reference in New Issue
Block a user