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


Configuring Bridged Ethernet Dynamic Interfaces

A bridged Ethernet interface is IP over bridged Ethernet over ATM 1483 over ATM AAL5 over ATM.

When bridged Ethernet packets are received over ATM circuits, the bridged Ethernet and IP interfaces are dynamically constructed over the corresponding ATM 1483 interfaces and use the configuration data received from the RADIUS server, a profile, or both.

Figure 47 shows the protocol layers that represent the bridged Ethernet interface columns, and the layers within the interface columns that are static and dynamic.


Figure 47: Dynamic Bridged Ethernet over Static ATM 1483 Interface Columns

Configuring a Dynamic Bridged Ethernet Interface

When you configure dynamic bridged Ethernet interfaces, you must assign a profile. You may optionally assign a subscriber identification.

To configure dynamic bridged Ethernet interfaces:

  1. Configure a physical interface.
  2. host1(config)#interface atm 5/0 
    
    
    
  3. Configure an ATM subinterface.
  4. host1(config-if)#interface atm 2/0.1
    
    
    
  5. Configure a PVC by specifying the VCD, the VPI, the VCI, and the encapsulation type.

If you want the router to autodetect the encapsulation type, use the aal5autoconfig option.

host1(config-subif)#atm pvc 10 100 22 aal5snap
host1(config-subif)#atm pvc 10 100 22 aal5autoconfig

  1. Do either of the following:
  1. Assign a profile to match the encapsulation type of bridged Ethernet.
  2. host1(config-subif)#profile bridgedEthernet foo
    
    
    
  3. (Optional) Assign subscriber identification.
  4. host1(config-subif)#subscriber bridgedEthernet user charlie domain myisp 
    password lucy
    
    
    
  5. (Optional) Verify your configuration.
  6. host1#show atm subinterface atm 2/0.1
    
    
    

atm pvc

auto-configure

interface atm

profile

subscriber

Configuring Subscriber Management for IP Subscribers on Dynamic Bridged Ethernet Interfaces

You can use the JUNOSe subscriber management application to configure and manage IP subscribers associated with a dynamic bridged Ethernet over static ATM 1483 interface column, as described in Authenticating Subscribers on Dynamic Bridged Ethernet over Static ATM Interfaces.

To use the subscriber management application to configure IP subscribers on a dynamic bridged Ethernet interface for RADIUS authentication:

  1. Define an IP service profile that contains the subscriber's RADIUS authentication parameters including the username, domain, and password.
  2. Configure the interface profile from which the router creates a dynamic bridged Ethernet interface column.
  1. Include the desired characteristics for the upper-layer encapsulation types.
  2. (Optional) Specify the name of the route map used to configure the IP subscriber interface.
  3. Use the bridge1483 service-profile command to assign the specified IP service profile to the interface profile. The IP service profile contains the RADIUS authentication parameters for subscribers on the dynamic bridged Ethernet interface.
  1. Define the underlying static or dynamic ATM 1483 subinterface on which the dynamic bridged Ethernet interface column is built.
  1. Assign the specified interface profile to the ATM 1483 subinterface.
  2. Enable autodetection (autoconfiguration) of the bridged Ethernet upper-layer encapsulation type.
  3. Define the ATM PVC over which data is transmitted.
  1. (Optional) Use the show profile command to verify assignment of the IP service profile to the interface profile.

For information, see show profile.

Configuration Example Using subscriber Command

The following configuration example illustrates the preceding procedure. The example has two parts:

Assume that you have issued the following commands to configure IP subscribers on a dynamic bridged Ethernet interface for RADIUS authentication. In this configuration, the subscriber command provides the subscriber's authentication parameters, and the static ATM 1483 subinterface is the authenticating layer. Keep in mind that the subscriber command does not support running stateful SRP switchover on the router.

! Configure the interface profile from which to create a dynamic bridged Ethernet 
! interface. Include the desired attributes (in this case, IGMP) and, optionally, the 
! name of the route map used to configure the IP subscriber interface.
host1(config)#profile east
host1(config-profile)#ip igmp
host1(config-profile)#ip igmp immediate-leave
host1(config-profile)#ip igmp group limit 6
host1(config-profile)#ip route-map ip-subscriber eastRouteMap
host1(config-profile)#exit
! 
! Configure the static ATM 1483 subinterface to assign the east profile, support 
! RADIUS authentication, enable autodetection of the bridged Ethernet upper-layer 
! encapsulation type, and define the ATM PVC.
host1(config)#interface atm 2/1.100 point-to-point
host1(config-subif)#profile bridgedEthernet east
host1(config-subif)#subscriber bridgedEthernet user westford001 

domain xyzcorp.east password abc123
host1(config-subif)#auto-configure bridgedEthernet
host1(config-subif)#atm pvc 100 10 101 aal5snap 6400 0 0
host1(config-subif)#exit

Equivalent Configuration Example Using IP Subscriber Management

To achieve the same functionality without adversely affecting stateful SRP switchover if it is running on the router, you can issue the following commands to use the subscriber management feature to configure IP subscribers on a dynamic bridged Ethernet interface using RADIUS. In this configuration, the IP service profile provides the subscriber's authentication parameters, and the subscriber management application is the authenticating layer. To assign the IP service profile to the interface profile, use the bridge1483 service-profile command.

! Define an IP service profile containing the subscriber's username, domain, 
and password.
host1(config)#ip service-profile eastServiceProfile
host1(config-service-profile)#user-name westford001
host1(config-service-profile)#domain xyzcorp.east
host1(config-service-profile)#password abc123
host1(config-service-profile)#exit
! 
! Configure the interface profile from which to create a dynamic bridged Ethernet 
! interface. Include the desired attributes (in this case, IGMP), the name of the 
! route map used to configure the IP subscriber interface (optional), and the name 
! of the IP service profile containing the authentication parameters for the dynamic 
! bridged Ethernet interface.
host1(config)#profile east
host1(config-profile)#ip igmp
host1(config-profile)#ip igmp immediate-leave
host1(config-profile)#ip igmp group limit 6
host1(config-profile)#ip route-map ip-subscriber eastRouteMap
host1(config-profile)#bridge1483 service-profile eastServiceProfile
host1(config-profile)#exit
! 
! Configure the static ATM 1483 subinterface to assign the east profile, 
! enable autodetection of the bridged Ethernet upper-layer encapsulation type, 
! and define the ATM PVC.
host1(config)#interface atm 2/1.100 point-to-point
host1(config-subif)#profile bridgedEthernet east
host1(config-subif)#auto-configure bridgedEthernet
host1(config-subif)#atm pvc 100 10 101 aal5snap 6400 0 0
host1(config-subif)#exit

For more information about using the subscriber management application, see JUNOSe Broadband Access Configuration Guide, Chapter 23, Configuring Subscriber Management.

bridge1483 service-profile


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