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

Configuring a Static or Dynamic IP Demux Subscriber Interface over Aggregated Ethernet

You can configure a subscriber interface using a static or dynamic IP demultiplexing (demux) logical interface stacked on an aggregated Ethernet logical interface. Optionally, you can configure the aggregated Ethernet logical interface to support one-to-one active/backup link redundancy or traffic load balancing.

This topic includes the following tasks:

Configuring the Number of Aggregated Ethernet Logical Interfaces on the Router

To configure the underlying aggregated Ethernet logical interface for a static or dynamic IP demultiplexing (demux) subscriber interface:

Configuring Ethernet Links as Members of an Aggregated Ethernet Logical Interface for a Static or Dynamic IP Demux Subscriber Interface

To enable Ethernet links as members of an aggregated Ethernet logical interface that is to serve as the underlying interface for a static or dynamic IP demux subscriber interface:

Configuring an Aggregated Ethernet Logical Interface to Support a Static or Dynamic IP Demux Subscriber Interface

To configure an aggregated Ethernet logical interface so that it can be used as the underlying logical interface for a static or dynamic IP demux interface:

You can include these statements at the [edit interfaces aex unit logical-unit-number] hierarchy level for each Ethernet link.

Note: IP demux interfaces currently support only the Internet Protocol version 4 (IPv4) suite (family inet).

[edit]
interfaces {
aex { # Example: ’ae5’
unit logical-unit-number { # Specify the first link
(demux-destination inet | demux-source inet);
family inet {
(address number | unnumbered-address interface-name < preferred-source-address address> );
}
}
unit logical-unit-number { # Specify the second link
(demux-destination inet | demux-source inet);
family inet {
(address number | unnumbered-address interface-name < preferred-source-address address> );
}
}
}
}

For general information about configuring an IP demux underlying interface, or for specific information about configuring a preferred source address for unnumbered Ethernet or demux interfaces, see the JUNOS Network Interfaces Configuration Guide.

Configuring a Static IP Demux Subscriber Interface over an Aggregated Ethernet Logical Interface

To configure a static IP demux subscriber interface using an appropriately configured aggregated Ethernet logical interface as the underlying logical interface:

Note: IP demux interfaces currently support only the Internet Protocol version 4 (IPv4) suite (family inet).

[edit]
interfaces {
demux0 {
unit logical-unit-number {
demux-options {
underlying-interface logical-interface-name;
}
family inet {
(demux-destination destination-prefix | demux-source source-prefix);
filter { # Optional
input input-filter-name;
output output-filter-name;
}
}
}
}
}

For general information about configuring an IP demux underlying interface, see the JUNOS Network Interfaces Configuration Guide. For general information about configuring firewall filters, see the JUNOS Policy Framework Configuration Guide.

Configuring a Dynamic IP Demux Subscriber Interface over an Aggregated Ethernet Logical Interface

To configure a dynamic IP demux subscriber interface using an appropriately configured aggregated Ethernet logical interface as the underlying logical interface:

Note: IP demux interfaces currently support only the Internet Protocol version 4 (IPv4) suite (family inet).

For general information about configuring firewall filters, see the JUNOS Policy Framework Configuration Guide.

[edit]
dynamic-profiles {
dynamic-profile-name {
interfaces {
demux0 {
unit “$junos-interface-unit” {
demux-options {
underlying-interface “$junos-underlying-interface”;
}
family inet {
demux-source {
$junos-subscriber-ip-address;
}
filter {
input input-filter-name;
output output-filter-name;
}
}
}
}
}
}
}

Displaying Configuration Information About IP Demux Interfaces over Aggregated Ethernet

To display configuration information that pertains to IP demux interfaces over aggregated Ethernet, issue any of the following operational commands:

Related Topics


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