[Contents] [Prev] [Next] [Index] [Report an Error]

Redistributing Access Routes

Access-internal routes, such as DHCP and AAA/PPP host routes, are host routes to directly connected clients. Access routes, also known as AAA framed routes, are sourced by AAA.

The following example shows how you might redistribute access-internal routes and access routes by matching on a tag:

  1. Configure route map tagtest to match tag 30.
    host1(config)#route-map tagtest
    host1(config-route-map)#match tag 30
  2. Configure redistribution into BGP of the access-internal routes and access routes with route map tagtest.
    host1(config)#router bgp 405
    host1(config-router)#redistribute access route-map tagtest
    host1(config-router)#redistribute access-internal route-map tagtest

[Contents] [Prev] [Next] [Index] [Report an Error]