Difference between revisions of "Cisco dialer profile"

From Ever changing code
Jump to navigation Jump to search
Line 11: Line 11:
*Dialer map-class (optional)—Supply configuration parameters to dialer interfaces (for example, ISDN speed, dialer timers parameters). A map-class can be referenced from multiple dialer interfaces.
*Dialer map-class (optional)—Supply configuration parameters to dialer interfaces (for example, ISDN speed, dialer timers parameters). A map-class can be referenced from multiple dialer interfaces.
=== Configuration overview ===
=== Configuration overview ===
Configuration


1. Define Intresting Traffic
#Define Intresting Traffic
 
## configure terminal
Step-1: configure terminal
## dialer-list ip permit
 
#Create Dialer Interface and associating to dialer pools
Step-2: dialer-list ip permit
## configure terminal
 
## interface dialer
2. Create Dialer Interface and associating to dialer pools
## ip address
 
## encapsulation
Step-1: configure terminal
## dialer remote-name
 
## dialer string
Step-2: interface dialer
## dialer-pool
 
## dialer-group
Step-3: ip address
#Configure and associate physical interface to dialer group
 
## configure terminal
Step-3: encapsulation
## interface
 
## dialer pool-member
Step-4: dialer remote-name
 
Step-5: dialer string
 
Step-6: dialer-pool
 
Step-7: dialer-group
 
3. Configure and associate physical interface to dialer group
 
Step-1: configure terminal
 
Step-2: interface
 
Step-3: dialer pool-member
- See more at: http://www.certificationkits.com/cisco-certification/Cisco-CCNA-Access-Lists/cisco-ccna-dial-on-demand-routing.html#sthash.4bsAbTpa.dpuf


=== Reference ===
=== Reference ===
*[http://www.cisco.com/en/US/tech/tk801/tk133/tk159/tsd_technology_support_sub-protocol_home.html Dialer Profiles]
*[http://www.cisco.com/en/US/tech/tk801/tk133/tk159/tsd_technology_support_sub-protocol_home.html Dialer Profiles]
*[http://www.cisco.com/en/US/tech/tk801/tk133/technologies_tech_note09186a0080094e6c.shtml Configuring and Troubleshooting Dialer Profiles]
*[http://www.cisco.com/en/US/tech/tk801/tk133/technologies_tech_note09186a0080094e6c.shtml Configuring and Troubleshooting Dialer Profiles]

Revision as of 23:37, 29 September 2013

Dialer profiles separate logical configurations from the physical interfaces that receive or make calls. Because of this separation, interfaces such as ISDN, asynchronous modems, or synchronous serial connections can be shared by multiple dialer profile configurations. Dialer profiles allow logical and physical configurations to be bound together dynamically on a per call basis, allowing physical interfaces to take on different characteristics based on incoming or outgoing call requirements. They also can define encapsulation, access control lists, minimum or maximum calls, and toggle features on or off.

The components of a dialer profile include
  • Dialer interfaces—Logical entities that use a per-destination dialer profile. Any number of dialer interfaces can be created in a router. All configuration settings specific to the destination go in the dialer interface configuration. Each dialer interface uses a dialer pool, which is a pool of physical interfaces (ISDN BRI and PRI, asynchronous-modem, and synchronous serial).
  • Dialer pool—Each interface references a dialer pool, which is a group of physical interfaces associated with a dialer profile. A physical interface can belong to multiple dialer pools. Contention for a specific physical interface is resolved by configuring the optional priority command.
  • Physical interfaces—Interfaces in a dialer pool are configured for encapsulation parameters. The interfaces are also configured to identify the dialer pools to which the interface belong. Dialer profiles support PPP and High-Level Data Link Control (HDLC) encapsulation.
  • Dialer map-class (optional)—Supply configuration parameters to dialer interfaces (for example, ISDN speed, dialer timers parameters). A map-class can be referenced from multiple dialer interfaces.

Configuration overview

  1. Define Intresting Traffic
    1. configure terminal
    2. dialer-list ip permit
  2. Create Dialer Interface and associating to dialer pools
    1. configure terminal
    2. interface dialer
    3. ip address
    4. encapsulation
    5. dialer remote-name
    6. dialer string
    7. dialer-pool
    8. dialer-group
  3. Configure and associate physical interface to dialer group
    1. configure terminal
    2. interface
    3. dialer pool-member

Reference