Thanks... I may have actually found a "better" way to do this.  Is there any
reason this wouldn't work?

[email protected]# show
description "Wireless Network Trunk";
vlan-tagging;
encapsulation flexible-ethernet-services;
unit 400 {
    description Wireless_Public_DHCP;
    encapsulation vlan-bridge;
    vlan-id 400;
    family bridge;
}
unit 401 {
    description Wireless_Private_Management;
    encapsulation vlan-bridge;
    vlan-id 401;
    family bridge;
}
unit 402 {
    description Wireless_PPPOE;
    vlan-id 402;
    family pppoe {
        dynamic-profile PPPOE;
    }
}

Thanks again,
Paul


-----Original Message-----
From: Per Granath [mailto:[email protected]] 
Sent: February-15-12 1:54 AM
To: Paul Stewart; [email protected]
Subject: RE: [j-nsp] flexible ethernet services / pppoe

> 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