[j-nsp] flexible ethernet services / pppoe
Paul Stewart
paul at paulstewart.org
Wed Feb 15 10:48:43 EST 2012
Thanks... I may have actually found a "better" way to do this. Is there any
reason this wouldn't work?
paul at dis1.beachburg1# 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:per.granath at gcc.com.cy]
Sent: February-15-12 1:54 AM
To: Paul Stewart; juniper-nsp at puck.nether.net
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;
> }
> }
>
> paul at dis1.beachburg1# 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)
More information about the juniper-nsp
mailing list