diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:20:21 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-30 15:20:21 +0200 |
commit | 652be92a21f5575e5f74f6abe98eb4200b86776c (patch) | |
tree | acf3dcdf931dad33bdef322565b74eb11079a529 /proto/bgp/bgp.c | |
parent | f196b12c62633e382541ba156e6df1534860c568 (diff) | |
parent | 9e60b500c76945ccdea94d3a67e7acfde5e3f969 (diff) |
Merge remote-tracking branch 'origin/master' into haugesund-to-2.0
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r-- | proto/bgp/bgp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 8c97f7b3..2b97cc4b 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -2467,6 +2467,9 @@ bgp_show_proto_info(struct proto *P) else cli_msg(-1006, " Neighbor address: %I%J", p->remote_ip, p->cf->iface); + if ((p->conn == &p->outgoing_conn) && (p->cf->remote_port != BGP_PORT)) + cli_msg(-1006, " Neighbor port: %u", p->cf->remote_port); + cli_msg(-1006, " Neighbor AS: %u", p->remote_as); cli_msg(-1006, " Local AS: %u", p->cf->local_as); |