After you define the access-line-identifier (ALI) interface
set, you must configure the underlying VLAN interface to enable creation
of dynamic VLAN subscriber interfaces based on the ALI. You can configure
the underlying VLAN interface statically or dynamically.
This topic describes how to configure the underlying VLAN interface statically.
To configure a static underlying VLAN interface to use
the ALI:
- Associate the static underlying VLAN interface with the
line identity dynamic profile that defines the ALI interface set.
[edit]
user@host# set interfaces interface-name unit logical-unit-number auto-configure line-identity dynamic-profile ali-interface-set-profile-name
For example, the following statement associates static Gigabit
Ethernet VLAN interface ge-1/0/0.0 with the dynamic profile ali-vlan-set-profile
that defines the ALI interface set.
[edit]
user@host# set interfaces ge-1/0/0 unit 0 auto-configure line-identity dynamic-profile ali-vlan-set-profile
- Configure one or more trusted options—the access-line-identifier
information—that are accepted to trigger the creation of the
dynamic VLAN.
[edit]
user@host# set interfaces interface-name unit logical-unit-number auto-configure line-identity include trusted-option
For example, the following statement specifies that only the
ARI is accepted to trigger creation of the VLAN. When the ARI is not
received, no VLAN is created.
[edit]
user@host# set interfaces ge-1/0/0 unit 0 auto-configure line-identity include remote-id
The following example shows the static configuration that uses
this statement. This configuration enables the underlying VLAN interface
ge-1/0/0.0 to create dynamic subscriber interfaces based on the ARI
by applying a single default ALI interface set dynamic profile (ali-vlan-set-profile)
to all households on the VLAN interface.
[edit]
interfaces {
ge-1/0/0 {
flexible-vlan-tagging;
unit 0 {
vlan-id 100;
auto-configure {
line-identity {
dynamic-profile ali-vlan-set-profile;
include {
remote-id;
}
}
}
}
}
}