22 lines
868 B
Markdown
22 lines
868 B
Markdown
# H3C ONU设备下发上网业务步骤
|
||
1. 先查看需要下发业务的设备MAC在OLT的哪个口下面,需要进入OLT对应的槽位,如slot 1
|
||
`display onu slot 1 | include 1484-778e-a860`
|
||
• OLT返回内容
|
||
`1484-778e-a860 4 12414 Onu1/0/2:4 WA6520H-EGPON/A 106/ Up N/A`
|
||
2. 进入系统配置
|
||
`system-view`
|
||
3. 进入端口设备的端口
|
||
`interface Onu1/0/2:4`
|
||
4. 配置ONU
|
||
```
|
||
uni 1 vlan-mode trunk pvid 4094 2000 to 2000 3000 to 3010
|
||
port link-type trunk
|
||
undo port trunk permit vlan 1
|
||
port trunk permit vlan 2000 3000 to 3010 4094
|
||
```
|
||
5. 保存(输入save force后需要稍等一下才会出现Saved the current configuration to mainboard device successfully.)
|
||
```
|
||
[16OLT-Onu1/0/2:4]save force
|
||
Validating file. Please wait...
|
||
Saved the current configuration to mainboard device successfully.
|
||
``` |