03-27-2017 11:25 PM - edited 03-05-2019 08:15 AM
check below .
why neighbor as number show like that ?
03-27-2017 11:45 PM
Hello,
You must be using command "bgp asnotation dot" under BGP configuration
router bgp 1
bgp asnotation dot
Cisco router allows us to use ASPLAIN or ASDOT notation.Default is ASPLAIN notation. in your case it is ASDOT notation activated. it is a just representation.
Please Rate the post is it if helful
03-27-2017 11:56 PM
what is its profit ?
03-28-2017 12:00 AM
can we translate it to original ?
03-28-2017 12:41 AM
Hello,
I wont recommend this if it is production. as there could be filter list set with decimal.
However, if it is not in production you can use "no bgp asnotation dot"
R6#sh ip bgp su
BGP router identifier 11.11.11.11, local AS number 1
BGP table version is 1, main routing table version 1
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
22.22.22.22 4 4.9 0 0 1 0 0 never Idle
55.55.55.55 4 2.4319 0 0 1 0 0 never Idle
R6#
R6#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R6(config)#router bgp 1
R6(config-router)#no bgp asnotation dot
R6(config-router)#c
R6#
R6#sh ip bgp su
BGP router identifier 11.11.11.11, local AS number 1
BGP table version is 1, main routing table version 1
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
22.22.22.22 4 262153 0 0 1 0 0 never Idle
55.55.55.55 4 135391 0 0 1 0 0 never Idle
R6#
R6#
Please rate the post if it is useful
03-28-2017 01:29 AM
03-28-2017 12:29 AM
Hello,
Main idea is to use ASN greater than 65535, which is not possible in 4 Bytes ASPLAIN notation.
ASDOT indicates that ASNs greater than 65535 should be represented as two words, seperated by a dot,
formula : (higher2bytes in decimal)*65536 + (lower2bytes in decimal)
for example
65536 will be reprented as (1*65536)+(0)=1.0
in your case 2.4319 is equivalent to (2*65536)+4319=135391 ASN
Please rate the post if it is useful
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide