![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
This chapter describes how to configure routers that use a serial interface for ATM access through an ATM data service unit (ADSU). The configuration tasks include the steps necessary to enable Asynchronous Transfer Mode-Data Exchange Interface (ATM-DXI) encapsulation, select a multiprotocol encapsulation method using ATM-DXI, and set up a permanent virtual circuit (PVC) for the selected encapsulation.
For a complete description of the ATM commands in this chapter, refer to the "ATM Commands" chapter of the Wide-Area Networking Command Reference. To locate documentation of other commands that appear in this chapter, use the command reference master index or search online.
In routers with a serial interface, an ADSU is required to provide the ATM interface to the network, convert outgoing packets into ATM cells, and reassemble incoming ATM cells into packets.
Any serial interface can be configured for multiprotocol encapsulation over ATM-DXI, as specified by RFC 1483. At the ADSU, the DXI header is stripped off, and the protocol data is segmented into cells for transport over the ATM network.
RFC 1483 describes two methods of transporting multiprotocol connectionless network interconnect traffic over an ATM network. One method allows multiplexing of multiple protocols over a single PVC. The other method uses different virtual circuits to carry different protocols. Our implementation of RFC 1483 supports both methods and supports transport of Apollo Domain, AppleTalk, Banyan VINES, DECnet, IP, Novell IPX, ISO CLNS, and XNS traffic.
To configure ATM access over a serial interface, complete the tasks in the following sections. The first four tasks are required.
For an example of configuring ATM access over a serial interface, see the section "ATM Access over a Serial Interface Example" at the end of this chapter.
To begin configuring the serial interface for ATM access, enable the serial interface by performing the following steps beginning in global configuration mode:
The supported protocols are Apollo Domain, AppleTalk, Banyan VINES, DECnet, IP, Novell IPX, ISO CLNS, and XNS.
For information about the addressing requirements of a protocol, see the relevant protocol configuration chapter in the Network Protocols Configuration Guide, Part 1, the Network Protocols Configuration Guide, Part 2, or the Network Protocols Configuration Guide, Part 3.
To enable ATM-DXI encapsulation on a serial or High-Speed Serial Interface (HSSI), perform the following task in interface configuration mode:
Task | Command |
---|---|
Enable ATM-DXI encapsulation. | encapsulation atm-dxi |
An ATM-DXI PVC can be defined to carry one or more protocols as described by RFC 1483, or multiple protocols as described by RFC 1490.
To set up the ATM-DXI PVC and select an encapsulation method, perform the following task in interface configuration mode:
Task | Command |
---|---|
Define the ATM-DXI PVC and the encapsulation method. | dxi pvc vpi vci [snap | nlpid | mux] |
The MUX (multiplex) option defines the PVC to carry one protocol only; each protocol must be carried over a different PVC. The SNAP (Subnetwork Access Protocol) option is LLC/SNAP multiprotocol encapsulation, compatible with RFC 1483; SNAP is the current default option. The network layer protocol identification (NLPID) option is multiprotocol encapsulation, compatible with RFC 1490; this option is provided for backward compatibility with the default setting in earlier versions in the Cisco IOS software.
This section describes how to map protocol addresses to the virtual channel identifier (VCI) and the virtual path identifier (VPI) of a PVC that can carry multiprotocol traffic. The protocol addresses belong to the host at the other end of the link. To map a protocol address to an ATM-DXI PVC, complete the following task in interface configuration mode:
Task | Command |
---|---|
Map a protocol address to the ATM-DXI PVC's VPI and VCI. | dxi map protocol protocol-address vpi vci [broadcast] |
Repeat this task for each protocol to be carried on the PVC.
The supported protocols are Apollo Domain, AppleTalk, Banyan VINES, DECnet, IP, Novell IPX, ISO CLNS, and XNS.
For an example of configuring a serial interface for ATM, see the "ATM Access over a Serial Interface Example" section later in this chapter.
After configuring the serial interface for ATM, you can display the status of the interface, the ATM-DXI PVC, or the ATM-DXI map. To display interface, PVC, or map information, complete the following tasks in EXEC mode:
Task | Command |
---|---|
Display the serial ATM interface status. | show interfaces atm [slot/port] |
Display the ATM-DXI PVC information. | show dxi pvc |
Display the ATM-DXI map information. | show dxi map |
The example in this section illustrates how to configure a serial interface for ATM access.
In the following example, serial interface 0 is configured for ATM-DXI with MUX encapsulation. Because MUX encapsulation is used, only one protocol is carried on the PVC. This protocol is explicitly identified by a dxi map command, which also identifies the protocol address of the remote node. This PVC can carry IP broadcast traffic.
interface serial 0 ip address 172.21.178.48 encapsulation atm-dxi dxi pvc 10 10 mux dxi map ip 172.21.178.4 10 10 broadcast
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |