示例:为动态用户接口创建配置 PPPoE 服务名称表
此示例说明如何配置 PPPoE 服务名称表,以便根据 PPPoE 客户端在 PPPoE 协商期间提供的服务名称、代理电路标识符 (ACI) 和代理远程标识符 (ARI) 信息创建动态 PPPoE 用户接口。
在此示例中,PPPoE 服务名称表 TableDynamicPPPoE
包括一个 any
服务条目、 empty
服务条目和两个命名服务条目: Premium
和 Standard
。为 TableDynamicPPPoE
配置的 PPPoE 底层接口是 ge-2/0/0.1
和 ge-2/0/0.2
。仅 ge-2/0/0.1
对动态配置文件分配和动态 PPPoE 用户接口创建进行配置。
在配置示例之后, 表 1 解释了路由器如何评估中的 TableDynamicPPPoE
条目,从而在指定的路由实例中为每个示例客户端创建动态 PPPoE 用户接口。
要配置 PPPoE 服务名称表以创建动态 PPPoE 用户接口:
配置 PPPoE 服务名称表。
protocols { pppoe { service-name-tables TableDynamicPPPoE { service any { terminate; max-sessions 100; dynamic-profile AnyProfile; agent-specifier { aci "broadway-ge-1/0/1.0" ari "london" { terminate; dynamic-profile LondonProfile; routing-instance LondonRI; } aci "groton-ge-4/0/3.32" ari "paris" { delay 5; dynamic-profile ParisProfile; routing-instance ParisRI; } } } service empty { drop; agent-specifier { aci "dunstable-ge-1/0/0.1" ari "kanata" { dynamic-profile BasicPppoeProfile; delay 10; } } } service Premium { terminate; dynamic-profile PremiumProfile; } service Standard { terminate; max-sessions 10; dynamic-profile StandardProfile; agent-specifier { aci "dunstable-ge-1/0/0.1" ari "kanata" { dynamic-profile BasicPppoeProfile; delay 10; } } } } } }
为服务名称表配置 PPPoE 底层接口。
interfaces { ge-2/0/0 { vlan-tagging; unit 1 { vlan-id 1; pppoe-underlying-options { dynamic-profile BasicPppoeProfile; service-name-table TableDynamicPPPoE; } } unit 2 { vlan-id 2; pppoe-underlying-options { service-name-table TableDynamicPPPoE; } } } }
表 1 列出了在多个示例 PPPoE 客户端请求中提供的服务名称、ACI 值和 ARI 值,以及路由器接收每个客户端请求的 PPPoE 底层接口的名称。“结果”列介绍了由路由器基于以下 两项 创建的动态 PPPoE 用户接口:
在 PPPoE 协商期间从每个 PPPoE 客户端接收的值
路由器评估 PPPoE 服务名称表中配置的条目以查找与客户端服务名称和 ACI/ARI 信息的匹配项的顺序,如 PPPoE 服务名称表中的匹配客户端信息的评估顺序所述
PPPoE客户端 |
服务名称 |
ACI 值 |
ARI 值 |
接收底层接口 |
结果 |
---|---|---|---|---|---|
客户端 1 |
溢价 |
Broadway-ge-1/0/1.1 |
伦敦 |
ge-2/0/0.1 |
匹配为 |
客户端 2 |
溢价 |
dunstable-ge-1/0/1.0 |
多伦多 |
ge-2/0/0.1 |
匹配基本 |
客户端 3 |
空 |
dunstable-ge-1/0/0.1 |
卡纳塔 |
ge-2/0/0.1 |
匹配为 |
客户端 4 |
空 |
slinger-ge-1/0/0.1 |
芝加哥 |
ge-2/0/0.2 |
由于接收底层接口 |
客户端 5 |
标准 |
slinger-ge-1/0/0.1 |
芝加哥 |
ge-2/0/0.1 |
匹配基本 |