MA5680T配置指导(适用于V800R006C02版本)
《1-常用命令》
//登陆用户名root,密码 admin
MA5680T>enable //打开特权EXEC
MA5680T#config //进入终端配置模式
MA5680T(config)#sysname SJZ-HW-OLT-1 //设备命名 (一般为开局配置)
MA5680T(config)#switch language-mode //切换语言,可以在中英文语言中转换。
MA5680T(config)#board confirm 0 //对于自动发现的单板,需要确认后,单板才能使用。
//对于未确认的单板,单板硬件运行指示灯正常,但是业务端口无法工作。
《2-开局配置命令》
MA5680T (config)#vlan 99 smart //增加设备管理VLAN (一般为开局配置)
MA5680T (config)#vlan 10 smart //增加语音业务VLAN (一般为开局配置)
MA5680T (config)#port vlan 99 0/18 0 //将管理VLAN透传到上行端口. (一般为开局配置)
MA5680T (config)#port vlan 10 0/17 1 //将语音业务VLAN透传到上行端口(一般为开局配置)
// 0/18 0 意思为第0框(默认框号) / 第18槽位(槽位编号,一般在机框上都有标出) 0端口(上行口编号)
MA5680T (config)#vlan desc 99 description NMS VLAN //添加vlan的描述, (一般为开局配置)
MA5680T (config)#vlan desc 10 description NGN-VPN
//配置设备管理地址,(一般为开局配置)
MA5680T (config)#interface vlanif 99
MA5680T (config-if-vlanif99)#ip address 172.16.21.2 255.255.255.0
MA5680T (config-if-vlanif99)#quit
MA5680T (config)#ip route-static 0.0.0.0 0.0.0.0 172.16.21.1 //配置设备缺省路由 (一般为开局配置)
MA5680T (config)#ip route-static 10.0.0.0 255.0.0.0 10.50.42.1 //配置语音部分路由 (一般为开局配置)
//设置上行端口速率以及双工模式 (一般为开局配置)
MA5680T (config)#interface giu 0/17
MA5680T (config-if-giu-0/17)#speed 0 1000 //配置端口速率,GE口只能配置成1000, 10GE口只能配置成10000
MA5680T (config-if-giu-0/17)#speed 1 1000
MA5680T (config-if-giu-0/17)#duplex 0 full //配置双工模式,half为半双工,full为全双工
MA5680T (config-if-giu-0/17)#duplex 1 full
MA5680T (config-if-giu-0/17)#auto-neg 0 disable //配置自协商模式,disable为禁止自协商,enable为允许
MA5680T (config-if-giu-0/17)#auto-neg 1 disable
MA5680T (config-if-giu-0/17)#quit
//在终端配置模式下添加网管SNMP参数
snmp-agent community read public //设置读参数
snmp-agent community write private //设置写参数
snmp-agent sys-info contact HUAWEI TEL:4008302118 //设置SNMP联系信息
snmp-agent sys-info location SHIJIAZHUANG UNIONCOM NETWORKSTATIONM //设置SNMP本地信息
snmp-agent sys-info version v1 //设置SNMP版本信息
snmp-agent target-host trap-hostname N2000SERVER address 172.16.255.2 udp-port 161 trap-paramsname private
//设置网管参数,N2000SERVER为网管计算机名称,172.16.255.2为网管地址。通信端口一般为161,读串为private
//以下为添加的两个综合网管的管理参数。
snmp-agent target-host trap-hostname public.61.182.202.57 address 61.182.202.57 trap-paramsname public
snmp-agent target-host trap-hostname public.61.182.202.46 address 61.182.202.46 trap-paramsname public
snmp-agent target-host trap-paramsname private v1 securityname private
snmp-agent target-host trap-paramsname public v1 securityname public
snmp-agent trap enable standard //启用SNMP 标准 trap报文功能
//查看EMU电源监控信息.如果没有需要新建系统环境监控模块
MA5680T (config)# display emu 0
MA5680T (config)# emu del 0 //如果EMU电源模块添加不正确,需要删除EMU重新添加。此为删除命令
Are you sure to delete this EMU?(y/n)[n]:y
MA5680T (config)# dba-profile delete profile-id 20 //删除DBA模板,前提是此DBA模板没有被任何线路模板绑定。
MA5680T (config)# dba-profile modify profile-id 20 //修改DBA模板,前提是此DBA模板没有被任何线路模板绑定。
第三步:查看线路模板,如果没有,需要创建
MA5680T(config)#display ont-lineprofile epon all //查看EPON业务线路模板
MA5680T(config)#display ont-lineprofile gpon all //查看GPON业务线路模板
//系统默认没有线路模板,需创建线路模板1并进入到线路模板模式,系统最多支持4096个线路模板
//每个模板均可被ONU终端重复绑定。
MA5680T(config)#ont-lineprofile epon profile-name MDU profile-id 1
MA5680T(config-epon-lineprofile-1)#quit
//添加线路模板(编号)1.不设置任何参数,系统会默认使用DBA模板9绑定此线路模板。ONU开局绑定此模板。
//添加用户自定义的EPON线路模板,主要针对实现不同业务的终端使用
MA5680T(config)#ont-lineprofile epon profile-id 100 profile-name 100M //创建100M线路模板,绑定DBA模板100
MA5680T(config-epon-lineprofile-100)#llid dba-profile-id 100
//线路模板绑定DBA模板,支持下行加密,系统支持aes-128,triple-churining两种加密方式,默认加密关闭。
MA5680T(config-epon-lineprofile-100)#commit //注意,添加的线路模板需要提交命令才被接受并保存下来.
MA5680T(config-epon-lineprofile-100)#quit
//按照以上方式添加其他线路模板:分别添加1M,2M,4M,6M,8M,10M,20M,30M,50M线路模板
//设置10M模板,保证10M带宽。
MA5680T(config)#ont-lineprofile epon profile-name 10M profile-id 10
MA5680T(config-epon-lineprofile-10)#llid dba-profile-id 10
MA5680T(config-epon-lineprofile-10)#commit
MA5680T(config-epon-lineprofile-10)#quit
……
MA5680T(config)#ont-lineprofile epon profile-name 50M profile-id 50
MA5680T(config-epon-lineprofile-50)#llid dba-profile-id 50
MA5680T(config-epon-lineprofile-50)#commit
MA5680T(config-epon-lineprofile-50)#quit
Interface gpon 0/1
Display ont info 0 5
//添加GPON线路模板,这里针对普通业务的线路模板,采用优先级配置的方式实现.
严格优先级队列调度
给每个队列赋予不同的优先级,每次调度时,最先对具有最高优先级的非空队列中的报文进行服务。严格优先级队列调度严格按照优先级从高到低的次序优先发送较高优先级队列中的报文,当较高优先级队列为空时,再发送较低优先级队列中的报文。
Priority参数: VLAN优先级
0: Best effort 1: Background 2: Spare 3: Excellent effort 4: Controlled load 5: Video 6: Voice 7: Network control
MA5680T(config)# ont-lineprofile gpon profile-name gpon-onu profile-id 20
MA5680T(config-gpon-lineprofile-20)# mapping-mode priority //Gem port端口映射为优先级映射(默认为vlan映射)
MA5680T(config-gpon-lineprofile-20)#tcont 1 dba-profile-id 2 // Tcont 1用于管理通道,和dba模板2绑定
MA5680T(config-gpon-lineprofile-20)# tcont 2 dba-profile-id 1 // Tcont 2用于语音通道,和dba模板1绑定
MA5680T(config-gpon-lineprofile-20)# tcont 3 dba-profile-id 50 // Tcont 3用于数据业务,和dba模板50绑定
MA5680T(config-gpon-lineprofile-20)# gem add 0 eth tcont 1 priority-queue 5 //建立Gem port,绑定相应的Tcont通道。
MA5680T(config-gpon-lineprofile-20)# gem add 1 eth tcont 2 priority-queue 6
MA5680T(config-gpon-lineprofile-20)# gem add 2 eth tcont 3 priority-queue 0
MA5680T(config-gpon-lineprofile-20)# gem mapping 0 0 priority 5 //建立GEM Port端口映射,这里使用优先级映射。
MA5680T(config-gpon-lineprofile-20)# gem mapping 1 0 priority 6
MA5680T(config-gpon-lineprofile-20)# gem mapping 2 0 priority 0
MA5680T(config-gpon-lineprofile-20)#commit
MA5680T(config-gpon-lineprofile-20)#quit
The number of EPON autofind ONT is 3
注 : 对于某些新开局的OLT,要特别注意是否开局启用了ONU自动发现功能.否则始终无法查看到上报的ONU信息.见开局配置
第六步:添加业务数据
情景一:EPON组网,下挂ONU终端。
MA5680T(config)#interface epon 0/1 //进入到EPON单板模式。
//注册或者确认ONU终端,可以实现离线添加数据,但要清楚设备上联端口和地址码信息。
MA5680T (config-if-epon-0/1)# ont add 0 0 mac-auth 0000-0000-0000 snmp ont-lineprofile-id 1 des To_604MianSiXQ
或:
MA5680T (config-if-epon-0/1)# ont confirm 0 ontid 0 mac-auth 0000-0000-0000 snmp ont-lineprofile-id 1
//依据设备类型不同,添加ONU的具体参数不同。
EPON MA562x/MA561x系列设备:
ont add 0 0 mac-auth 0000-0000-0000 snmp ont-lineprofile-id 1 des To_
EPON MA5606T系列设备/H81x系列设备
ont add 0 0 mac-auth 0000-0000-0000 oam ont-lineprofile-id 1 des To_
UA5000系列走epon上行
ont add 0 0 mac-auth 0000-0000-0000 oam ont-lineprofile-id 1 des To_
//添加SNMP参数,(凡通过SNMP管理方式注册的ONU终端,需要远程下发SNMP)
ont snmp-profile 0 1 profile-id 1
//配置ONU的管理信息,(凡通过SNMP管理方式注册的ONU终端,需要配置远程管理)
ont ipconfig 0 1 ip-address 172.16.21.3 mask 255.255.255.0 gateway 172.16.21.1 manage-vlan 99 priority 0
//退出PON板模式
quit
//配置业务流PVC,创建vlan交换
service-port vlan 10 epon 0/1/0 ont 0 multi-service user-vlan 10 inbound traffic-table index 6 outbound traffic-table index 6
service-port vlan 99 epon 0/1/0 ont 0 multi-service user-vlan 99 inbound traffic-table index 6 outbound traffic-table index 6
service-port vlan * epon 0/1/0 ont 0 multi-service user-vlan * inbound traffic-table index 6 outbound traffic-table index 6
//保存数据
save
情景二:普通业务,GPON组网,下挂ONU终端。
MA5680T(config)#interface gpon 0/1 //进入到GPON单板模式。
//注册或者确认ONU终端,可以实现离线添加数据,但要清楚设备上联端口和地址码信息。
GPON MA562x/MA561x系列设备:
ont add 0 0 sn-auth 0000000000000000 snmp ont-lineprofile-id 1 des To_
//添加SNMP参数,(凡通过SNMP管理方式注册的ONU终端,需要远程下发SNMP)
ont snmp-profile 0 0 profile-id 1
//配置ONU的管理信息,(凡通过SNMP管理方式注册的ONU终端,需要配置远程管理)
ont ipconfig 0 0 static ip-address 172.16.21.3 mask 255.255.255.0 gateway 172.16.21.1 vlan 99 priority 0
//退出PON板模式
quit
//配置业务流PVC,创建vlan交换
service-port vlan 10 gpon 0/1/0 ont 0 gemport 1 multi-service user-vlan 10 rx-cttr 6 tx-cttr 6
service-port vlan 99 gpon 0/1/0 ont 0 gemport 1 multi-service user-vlan 99 rx-cttr 6 tx-cttr 6
service-port vlan 222 gpon 0/1/0 ont 0 gemport 2 multi-service user-vlan 222 rx-cttr 6 tx-cttr 6
//保存数据
save
情景三:FTTH业务,GPON组网,下挂ONT终端。
MA5680T(config)#interface gpon 0/1 //进入到GPON单板模式。
//注册或者确认ONT终端,可以实现离线添加数据,但要清楚设备上联端口和地址码信息。
ont add 0 0 sn-auth 0000000000000000 omci ont-lineprofile-id 24 ont-srvprofile-id 24 des To_
//添加ONT的native-vlan
ont port native-vlan 0 0 iphost vlan 10 //iphost是个虚拟端口,是ONT的管理通道和语音通道
ont port native-vlan 0 0 eth 1 vlan 11
ont port native-vlan 0 0 eth 2 vlan 12
ont port native-vlan 0 0 eth 3 vlan 13
ont port native-vlan 0 0 eth 4 vlan 14
quit
//添加业务虚接口,这里数据业务采用了地址转换。
service-port vlan 10 gpon 0/1/0 ont 0 gemport 1 multi-service user-vlan 10 rx-cttr 6 tx-cttr 6
service-port vlan 222 gpon 0/1/0 ont 0 gemport 2 multi-service user-vlan 11 tag-transform translate-and-add inner-vlan 501 inner-priority 0 rx-cttr 6 tx-cttr 6
service-port vlan 222 gpon 0/1/0 ont 0 gemport 2 multi-service user-vlan 12 tag-transform translate-and-add inner-vlan 502 inner-priority 0 rx-cttr 6 tx-cttr 6
service-port vlan 222 gpon 0/1/0 ont 0 gemport 2 multi-service user-vlan 13 tag-transform translate-and-add inner-vlan 503 inner-priority 0 rx-cttr 6 tx-cttr 6
service-port vlan 222 gpon 0/1/0 ont 0 gemport 2 multi-service user-vlan 14 tag-transform translate-and-add inner-vlan 504 inner-priority 0 rx-cttr 6 tx-cttr 6
save
Port Port type
0 EPON
1 EPON
2 EPON
3 EPON
In port 1, the total of ONTs are: 7
In port 2, the total of ONTs are: 0
In port 3, the total of ONTs are: 0
//有故障的设备,引起故障的原因可能是因为光路不通,或者设备掉电与设备故障.需要根据实际情况排查.
//ONU通过单芯联到分光器,再通过分光器联结至OLT的PON口,通过MAC地址注册到OLT.通过各PON口下的ONU ID识别区分.
//查看全局配置命令,也可以通过匹配符或者section细节查看具体配置信息
display current-configuration
//匹配符| 后面通过 include 匹配字母,列出配置信息:
display current-configuration | include vlan
//section细节比较具体.OLT配置信息分以下几个细节:
全球配置信息,包括设备的命名,添加的用户帐户信息.各种能力集配置信息,以及线路参数全局配置等.
设备单板信息,槽位号,单板名称.
设备的SNMP参数设置
,, 设备的vlan配置,以及透传的上行口,各vlan子接口所设置的地址参数.
,
包括注册的MAC地址,分配的ONU ID,采用的线路模板,设备管理地址,管理vlan等.
主要是配置的保存参数
配置的电源参数
配置的风扇参数
配置的自动备份参数
添加的pvc信息
设备维护网口的配置信息
设备设置的安全参数
设备配置中的路由参数,以及允许访问的用户帐户
//举例,查看配置中所有的vlan配置细节.
display current-configuration section vlan
Queue-set-index Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8
1 - - - - - - - -
2 - - - - - - - -
3 - - - - - - - -
8 99 common epon 0/2 /1 3 - vlan 99 - - down
9 99 common epon 0/2 /1 4 - vlan 99 - - up
10 99 common epon 0/2 /2 5 - vlan 99 - - up
11 99 common epon 0/2 /2 6 - vlan 99 - - down
12 99 common epon 0/2 /2 7 - vlan 99 - - up
undo service-port 11 //需要将所有与0/2/2 onu id为6的pvc信息都删除,否则无法执行后面的操作.
interface epon 0/2 // 进入原来注册的PON口下
ont delete 2 6 // 删除ONU注册信息.
interface epon 0/1 //进入新的pon口下,添加ONU信息(略)
service-port vlan 99 epon 0/1/0 ont 1 multi-service user-vlan 99 //添加新的pvc信息.
保存数据,至此设备添加完毕.登陆到设备上去,添加新的业务数据.
一、 设备数据配置及查询
查看10槽位EPON板配置
MA5680T(config)#display current-configuration section epon-0/10
{ || }:
Command:
display current-configuration section epon-0/10
[MA5600V800R105: 5033]
[epon]
interface epon 0/10
port 0 ont-auto-find enable
ont add 0 0 mac-auth 0025-9E64-5C46 profile-id 12 desc “ONT_NO_DESCRIPTION” dba-profile 11
ont add 0 1 mac-auth 0025-9E64-5B43 profile-id 12 desc “ONT_NO_DESCRIPTION”
ont snmp 0 1 v1 “public” “private” 10.50.58.2 161 “huawei”
ont add 0 2 mac-auth 0025-9E62-7E0B profile-id 12 desc “ONT_NO_DESCRIPTION” dba-profile 11
ont snmp 0 2 v1 “public” “private” 10.50.58.2 161 “huawei”
ont add 0 3 mac-auth 0025-9E8D-F5ED profile-id 12 desc “ONT_NO_DESCRIPTION”
ont add 0 4 mac-auth 0025-9E8D-F5A8 profile-id 12 desc “ONT_NO_DESCRIPTION”
ont add 0 5 mac-auth 0025-9E8D-F5C9 profile-id 12 desc “ONT_NO_DESCRIPTION”
ont ipconfig 0 0 ip-address 10.50.234.66 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 0 1 ip-address 10.50.234.67 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 0 2 ip-address 10.50.234.68 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 0 3 ip-address 10.50.234.74 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 0 4 ip-address 10.50.234.75 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 0 5 ip-address 10.50.234.76 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
port 1 ont-auto-find enable
ont add 1 0 mac-auth 0025-9E8E-7969 profile-id 12 desc “ONT_NO_DESCRIPTION”
ont ipconfig 1 0 ip-address 10.50.234.70 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
port 2 ont-auto-find enable
ont add 2 1 mac-auth 0018-82EB-3814 profile-id 12 desc “ONT_NO_DESCRIPTION”
ont add 2 2 mac-auth 0018-82E7-002B profile-id 12 desc “ONT_NO_DESCRIPTION”
ont ipconfig 2 1 ip-address 10.50.234.72 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
ont ipconfig 2 2 ip-address 10.50.234.73 mask 255.255.255.0 gateway 10.50.234.1 manage-vlan 3334
port 3 ont-auto-find enable
Port Port type
0 EPON
1 EPON
2 EPON
3 EPON
MA5680T上其他常用的查看命令
配置查看:
1、查看snmp配置
MA5680T(config)# display current-configuration section public
1、 查看vlan配置
MA5680T(config)# display current-configuration section vlan
2、 查看所有epon单板下配置
MA5680T(config)# display current-configuration section epon
3、 查看模块epon单板下的配置
MA5680T(config)# display current-configuration section epon-0/1
4、 查看service-port配置
MA5680T(config)# display current-configuration section bbs
5、 查看service-port状态
MA5680T(config)# display service-port all
6、 查看ONU信息
MA5680T(config-if-epon-0/1)# display ont info 0 0
7、 查看系统模板配置信息
MA5680T(config)# display current-configuration section global
华为GPON配置说明
几个名词说明3
数据规划3
数据配置3
1.OLT数据配置3
创建DBA模板3
创建线路模板3
注册ONU4
OLT上透传ONU上来的vlan4
2.ONU上语音数据配置4
几个名词说明
DBA模板:创建的dba模板时给tcont引用的,dba模板的作用是对整台ONU上行进行限速。一个PON口上行带宽为1G,实际能用的只有900M,所以要对ONU的上行进行合理分配。
Tcont:tcont是连接dba和gemport的通道,也就是说gemport是通过和tcont联系,才把dba的作用引用过来。
Gemport:gemport是OLT线程工作的最小单元,前面的dba,tcont都是最终给gemport用。
线路模板ont-lineprofile:ONU注册时要选相应线路模板,里面包含tcont,gem等信息
DBA模板,线路模板,可以创建多个;一个线路模板中:tcont 有八个0-7,gem可以创建128个0-127;一个gem中可有映射8个:gem mapping 1 0;gem mapping 1 1,一直到gem mapping 1 7;但是一个线路模板中最多只能创建128条gem mapping;超出会报错。
数据规划
以花都狮岭数据规划为例:
OLT:网管vlan 22;
IP: 172.17.21.132;网关:172.17.21.129;语音vlan 100;语音IP:172.16.0.11
ONU:所属OLT的PON口 0/18/3
ONUID:1
ONU 网管IP 172.17.21.134; 网关:172.17.21.129;
语音vlan 100;语音IP:172.16.0.21
数据配置
1.OLT数据配置
创建DBA模板
dba-profile add profile-id 102 profile-name DBA_2M type3 assure 2048 max 10240
//保证2M;最大大10M
dba-profile add profile-id 105 profile-name DBA_5M type3 assure 5120 max 20480
dba-profile add profile-id 120 profile-name DBA_20M type3 assure 20480 max 102400
dba-profile add profile-id 150 profile-name DBA_50M type3 assure 51200 max 512000
创建线路模板
创建线路模板101:供ONU ID 1到5用;由于一个线路模板中gem mapping最多只能创建128条;故一个线路模板不要被过多的ONU调用。
ont-lineprofile gpon profile-id 101 profile-name MA5610_1_5
线路模板的编号为101,模板名称MA5610_1_5
tcont 1 dba-profile-id 120
//tcont1绑定120的DBA模板
tcont 2 dba-profile-id 105
//tcont2绑定105的DBA模板
tcont 3 dba-profile-id 102
//tcont3绑定102的DBA模板
gem add 1 eth tcont 1
//gem 1绑定tcont1
gem add 2 eth tcont 1
//gem 2绑定tcont1
gem add 126 eth tcont 2
//gem 126绑定tcont2
gem add 127 eth tcont 3
//gem 127绑定tcont3
gem mapping 126 0 vlan 100
//gem的126 0 与vlan100映射
gem mapping 127 0 vlan 22
//gem的127 0 与vlan22映射
commit
//绑定,相当于保持线路模板
quit
创建线路模板102:供ONU ID 6到10用
ont-lineprofile gpon profile-id 102 profile-name MA5610_6_10
tcont 1 dba-profile-id 120
tcont 2 dba-profile-id 105
tcont 3 dba-profile-id 102
gem add 1 eth tcont 1
gem add 2 eth tcont 1
gem add 126 eth tcont 2
gem add 127 eth tcont 3
gem mapping 126 0 vlan 100
gem mapping 127 0 vlan 22
commit
quit
创建线路模板103:供ONU ID 11到15用
ont-lineprofile gpon profile-id 103 profile-name MA5610_11_15
tcont 1 dba-profile-id 120
tcont 2 dba-profile-id 105
tcont 3 dba-profile-id 102
gem add 1 eth tcont 1
gem add 2 eth tcont 1
gem add 126 eth tcont 2
gem add 127 eth tcont 3
gem mapping 126 0 vlan 100
gem mapping 127 0 vlan 22
commit
quit
创建线路模板104:供ONU ID 16到20用
ont-lineprofile gpon profile-id 104 profile-name MA5610_16_20
tcont 1 dba-profile-id 120
tcont 2 dba-profile-id 105
tcont 3 dba-profile-id 102
gem add 1 eth tcont 1
gem add 2 eth tcont 1
gem add 126 eth tcont 2
gem add 127 eth tcont 3
gem mapping 126 0 vlan 100
gem mapping 127 0 vlan 22
commit
quit
注册ONU
进入0/18槽的PON板
interface gpon 0/18
ont add 3 1 sn-auth 48575443AAA69E42 snmp ont-lineprofile-id 101
给ONU注册,第3PON口,ONU 编号1,SN 48575443AAA69E42,线路模板101
ont ipconfig 3 1 static ip-address 172.17.21.134 mask 255.255.255.128 gateway 172.17.21.129 vlan 22
给刚刚注册的ONU,下发管理IP地址,网关掩码,ONU上会自动生成一条缺省路由。
quit
OLT上透传ONU上来的vlan
service-port vlan 22 gpon 0/18/3 ont 1 gemport 127 multi-service user-vlan 22
//给ONU透传网管vlan22
service-port vlan 100 gpon 0/18/3 ont 1 gemport 126 multi-service user-vlan 100
//给ONU透传语音vlan100
2.ONU上语音数据配置
telnet 172.17.21.134 登入到ONU上配置数据
board confirm 0
//单板确认
fax-modem parameters rfc2198-start-mode disableRfc2198SmartStartup
//关闭2198自启动功能
vlan 100 smart
//创建语音vlan100
port vlan 100 0/0 1
//透传vlan100
interface vlanif 100
ip address 172.16.0.23 255.255.254.0
//配置语音地址
quit
voip
ip address media 172.16.0.23 172.16.0.2
ip address signaling 172.16.0.23
//配置媒体IP和信令IP
qui
interface h248 0
y
if-h248 attribute mgip 172.16.0.23 mgport 2944 transfer udp
//配置mgip地址,mg端口号以及传输协议udp
if-h248 attribute primary-mgc-ip1 172.16.0.2 primary-mgc-port 2944 mgc-domain-name1 HDSLPJC9500
//配置mgc的地址,mgc的端口号;mgc的域名
if-h248 attribute mg-media-ip1 172.16.0.23
//配置mg媒体IP
if-h248 attribute start-negotiate-version 1
//配置H248协议开始协商的版本
if-h248 attribute domainName HDSLONU000003
//配置mg即ONU的域名
reset cold
y
//复位h248接口,发起注册
esl user
mgpstnuser batadd 0/3/0 0/3/31 0 terminalid 0
//配置语音用户
qui
save