> I'm trying to work with an interface that has mixed subinterfaces. some of
> the subinterfaces are part of a bridge domain, some are family inet, and one
> interface is PPPOE for subscriber termination.
> 
> 
> unit 402 {
>     description Wireless_PPPOE;
>     encapsulation ppp-over-ether;
>     vlan-id 402;
>     pppoe-underlying-options {
>         duplicate-protection;
>         dynamic-profile PPPOE;
>     }
> }
> 
> [email protected]# commit check
> 
> [edit interfaces ge-1/2/8]
>   'unit 402'
>      Link encapsulation type is not valid for device type
> error: configuration check-out failed

Try this:

[edit interfaces]
demux0 {
        unit 402 {
                proxy-arp;
                vlan-id 402;
                demux-options {
                        underlying-interface ge-1/2/8;
                }
                family pppoe {
                        duplicate-protection;
                        dynamic-profile PPPOE;
                }
        }
}

(and remove the other pppoe unit from the physical interface)

_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to