CCNP ISCW Notes

1 Apr 2008

Chapter 6: Configuring DSL Access with PPPoA

PPPoA is defined in RFC 2364 as PPP over AAL5.

PPPoA Types

Three types of PPPoA are available:

  • Virtual circuit multiplexed PPP over AAL5 (AAL5MUX) (RFC 2364)
  • LLC encapsulated PPP over AAL5 (AAL5SNAP) (RFC 2364) (default)
  • Cisco PPP over ATM (PPPoA) (Cisco proprietary)

VC-Multiplexed PPP over AAL5

Provides a separate virtual circuit for each routed protocol to be transported.

Configuration:

interface ATM0/0
 no ip address
 dsl operating-mode auto
 pvc 8/35
  encapsulation aal5mux ppp Virtual-Template1
!
interface Virtual-Template1
 encapsulation ppp
 ip address negotiated
 ppp authentication chap
 ...

LLC Encapsulated PPP over AAL5

Provides a single virtual circuit for all higher-layer protocols.

AAL5SNAP is the default method.

An LLC header is inserted at the beginning of the PDU.

The LLC header contains the following information:

  • Destination Service Access Point (DSAP) - Set to 0xFE for SNAP
  • Source Service Access Point (SSAP) - Set to 0xFE for SNAP
  • Frame Type (Control) - 0x03 (unnumbered)

Configured with encapsulation aal5snap.

Cisco PPPoA

Allows for multiple PVCs on multiple subinterfaces.

Cisco equipment is required end-to-end.

Configured with encapsulation ciscoppp.

Gerard Metoho-Eke commented on 11 Sep 2008 at 7:24 a.m.

One of the best summary I have seen. It make life easier and time well spent. Good job. Gerard

sam commented on 15 Sep 2008 at 3:18 a.m.

nice work

Leave a comment

(optional, will not be published)
(optional)

Comment Tips

  • You can use Markdown syntax for decoration. (Cheat sheet)
  • Links: [Google](http://google.com) or <http://google.com>
  • Use backticks around commands: `ip address 127.0.0.1`
  • Use indentations (tabs) for preformatted text (code blocks)