The access (or customer) side of the router running JUNOS software and operating in a video network uses IGMP and DHCP to manage video traffic to various clients. The interfaces on this side of the network use an unnumbered Ethernet configuration, as shown in Figure 7.
Figure 7: IPTV Network (Access Side)

To implement video/IPTV applications on the access side of a video services router running JUNOS software, use the following procedures.
![]() |
Note: To simplify this example, both video services routers (VSR1 and VSR2) use the same configuration except where otherwise specified. |
- [edit]
- interfaces {
-
- ge-1/0/0 {
-
- unit 0 {
-
- family inet {
- unnumbered-address lo0.0;
- }
- }
- }
- }
![]() |
Note: You must specify that the IGMP interface use promiscuous mode if you define the unnumbered Ethernet donor interface as a loopback interface. |
- [edit]
- protocols {
-
- igmp {
- interface ge-1/0/0.0;
- promiscuous-mode;
- immediate-leave;
- }
- }
- [edit]
- forwarding-options {
-
- dhcp-relay {
-
- server-group {
-
- DS1 {
- 100.1.1.1; # IP address of DHCP server (DS1)
- }
- }
- active-server-group DS1;
-
- group one {
- interface ge-1/0/0.0; # interface to which DHCP clients
send requests
- }
- }
- }
- [edit]
- protocols {
-
- pim {
-
- rp {
-
- local {
- address 1.1.1.1;
- }
- }
-
- interface ge-1/0/0.0 {
- mode sparse;
- }
- }
- }
- [edit]
- protocols {
-
- pim {
-
- interface ge-1/0/0.0 {
-
- bfd-liveness-detection {
- minimum-interval 100;
- }
- }
- }
- }
- [edit]
- routing-options {
-
- static {
-
- route 1.1.1.2/32 {
- qualified-next-hop ge-1/0/0.0;
- }
- }
- }
- [edit]
- routing-options {
-
- static {
-
- route 1.1.1.1/32 {
- qualified-next-hop ge-1/0/0.0;
- }
- }
- }
![]() |
Note: You must also configure static routes for the DSLAM devices to communicate with the unnumbered interfaces that are using a loopback interface. |