What is the correct configuration to limit the route export to only the loopback address of 10.1.1.1?
A.
ip vft VPN_A
!output omitted
export map NMS
!
route-map NMS
match ip address 1
set extcommunity rt 123:100 additive
!
access-list 1 permit 10.1.1.1 0.0.0
B.
ip vft VPN_A
!output omitted
export map NMS
!
route-map NMS
match ip address 1
set extcommunity rt 123:100 no-export
!
access-list 1 permit 10.1.1.1 0.0.0
access-list 1 permit any
C.
ip vft VPN_A
!output omitted
export map NMS
!
route-map NMS
match ip address 1
set community rt 123:100 additive
!
access-list 1 permit 10.1.1.1 0.0.0
D.
ip vft VPN_A
!output omitted
export map NMS
!
route-map NMS
match ip address 1
set community rt 123:100 no-export
!
access-list 1 permit 10.1.1.1 0.0.0
access-list 1 permit any