Reference Guide

ASDOT representation combines the ASPLAIN and ASDOT+ representations. AS numbers less than 65536 appear in
integer format (asplain); AS numbers equal to or greater than 65536 appear in the decimal format (asdot+). For example,
the AS number 65526 appears as 65526 and the AS number 65546 appears as 1.10.
Dynamic AS Number Notation Application
FTOS version 8.3.1.0 applies the ASN notation type change dynamically to the running-config statements.
When you apply or change an asnotation, the type selected is reflected immediately in the running-configuration and the
show commands (refer to the following two examples).
Example of Dynamic Changes in the Running Configuration When Using the bgp asnotation Command
ASDOT
FTOS(conf-router_bgp)#bgp asnotation asdot
FTOS(conf-router_bgp)#show conf
!
router bgp 100
bgp asnotation asdot
bgp four-octet-as-support
neighbor 172.30.1.250
local-as 65057
<output truncated>
FTOS(conf-router_bgp)#do show ip bgp
BGP table version is 24901,
local router ID is 172.30.1.57
<output truncated>
ASDOT+
FTOS(conf-router_bgp)#bgp asnotation asdot+
FTOS(conf-router_bgp)#show conf
!
router bgp 100
bgp asnotation asdot+
bgp four-octet-as-support
neighbor 172.30.1.250 local-as 65057
<output truncated>
FTOS(conf-router_bgp)#do show ip bgp
BGP table version is 31571, local router ID is 172.30.1.57
<output truncated>
AS-PLAIN
FTOS(conf-router_bgp)#
bgp asnotation asplain
FTOS(conf-router_bgp)#sho conf
!
router bgp 100
bgp four-octet-as-support
neighbor 172.30.1.250 local-as 65057
<output truncated>
FTOS(conf-router_bgp)#do sho ip bgp
BGP table version is 34558, local router ID is 172.30.1.57
<output truncated>
Example of the Running Configuration When AS Notation is Disabled
AS NOTATION DISABLED
FTOS(conf-router_bgp)#
no bgp asnotation
FTOS(conf-router_bgp)#sho conf
!
router bgp 100
bgp four-octet-as-support
neighbor 172.30.1.250
local-as 65057
152