Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

Announcement: Try the Ask AI chatbot for answers to your technical questions about Juniper products and solutions.

close
header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

Configuring a Subscriber Interface Using a Set of Static IP Demux Interfaces

date_range 06-Dec-23

You can create logical subscriber interfaces from IP demux interfaces. IP demultiplexing (demux) interfaces are logical interfaces that share a common, underlying logical interface. IP demux interfaces can be used to identify specific subscribers or to separate individual circuits.

You can group individual subscriber interfaces using interface sets to provide the same level of service for a group of subscribers; for example, all residential subscribers who receive the basic data service. Interface sets can be defined as a list of logical interfaces (unit 0, unit 1, and so on).

Note:

Only demux0 is supported. If you configure another demux interface, such as demux1, the configuration commit fails.

To configure a group of static IP demux interfaces:

  1. Configure the interface set.
    content_copy zoom_out_map
    interfaces {
        interface-set demux-set {
            interface demux0 {
                unit 0;
                unit 1;
                }
            }
        }
    
    
  2. Define the units of the interface set.
    content_copy zoom_out_map
    demux0 {
        unit 0 {
            demux-options {
                underlying-interface ge-2/0/1.1;
            }
            family inet {
                demux-source {
                     203.0.113.0/24;
                }
                address 203.0.113.25/24;
            }
        }
        unit 1 {
            demux-options {
                underlying-interface ge-2/0/1.1;
            }
            family inet {
                demux-source {
                    203.0.133.110/24;
                }
                address 203.0.113.12/24;
            }
        }
    }
    
footer-navigation