Arris eMTA line 2 | docsis.org

You are here

Arris eMTA line 2

6 posts / 0 new
Last post
emkowale
Arris eMTA line 2

Hi,

Does anyone have a quick mta config file example that will turn on line 2 in the Arris TMx02y series eMtas?

Thanks,
Eric

hinzoo
Arris TM502B file

Main
{
MtaConfigDelimiter 1;

SnmpMibObject enterprises.7432.1.1.1.6.0 Integer 1 ;
SnmpMibObject saEmtaSipDeviceDigitMap.0 String "xxxxxxxxxx+T" ;
SnmpMibObject saEmtaSipDeviceDigitMapTimeout.0 Gauge32 3000 ;
SnmpMibObject saEmtaSipDeviceLocalRingback.0 Integer 1;

SnmpMibObject ifAdminStatus.9 Integer 1; /* up */
SnmpMibObject saEmtaSipEndPntProxyAddress.1 String "10.101.4.53" ;
SnmpMibObject saEmtaSipEndPntProxyPassword.1 String "aaabbb" ;
SnmpMibObject saEmtaSipEndPntProxyUsername.1 String "123456" ;
SnmpMibObject saEmtaSipEndPntProxyPasswordEncrypt.1 Integer 1; /* none */

SnmpMibObject ifAdminStatus.10 Integer 1; /* up */
SnmpMibObject saEmtaSipEndPntProxyAddress.2 String "10.101.4.43" ;
SnmpMibObject saEmtaSipEndPntProxyPassword.2 String "cccddd" ;
SnmpMibObject saEmtaSipEndPntProxyUsername.2 String "7654321" ;
SnmpMibObject saEmtaSipEndPntProxyPasswordEncrypt.2 Integer 1; /* none */

MtaConfigDelimiter 255;
}

emkowale
Is this Arris?

Hi,

I have PacketAce and can't find any of these in the MIBs.

Thanks,
Eric

hinzoo
Oops, thats for SA modems :) sorry.

I'll try to find proper one :) - this should work:
Main
{
MtaConfigDelimiter 1;
SnmpMibObject ppCfgMtaAdminState.0 Integer 1; /* oos */
SnmpMibObject enterprises.7432.1.1.1.6.0 Integer 1 ;
/* SnmpMibObject sipCfgSipFeatureSwitch HexString 0x04000000;*/ /* rfc3323Privacyheader */
SnmpMibObject ppCfgMtaCallpFeatureSwitch HexString 0x00000000 ;
SnmpMibObject pktcMtaDevEnabled.0 Integer 1; /* true */
SnmpMibObject ppCfgMtaTeleSyslogServIpAddr String "10.10.45.54" ;
SnmpMibObject sipCfgPortUserName.1 String "123456" ;
SnmpMibObject sipCfgPortDisplayName.1 String "83123456" ;
SnmpMibObject sipCfgPortLogin.1 String "123456" ;
SnmpMibObject sipCfgPortPassword.1 String "password1" ;
SnmpMibObject ifAdminStatus.9 Integer 1; /* up */
SnmpMibObject sipCfgPortUserName.2 String "123457" ;
SnmpMibObject sipCfgPortDisplayName.2 String "83123457" ;
SnmpMibObject sipCfgPortLogin.2 String "123457" ;
SnmpMibObject sipCfgPortPassword.2 String "" ;
SnmpMibObject ifAdminStatus.10 Integer 1; /* up */
SnmpMibObject sipCfgProxyAdr.0 String "10.10.45.54;5060" ;
SnmpMibObject sipCfgProxyType.0 Integer 0; /* ipv4 */
SnmpMibObject sipCfgRegistrarAdr.0 String "10.10.44.11;5060" ;
SnmpMibObject sipCfgRegistrarType.0 Integer 0; /* ipv4 */
SnmpMibObject sipCfgProvisionedCodecArray.0 String "G729;PCMA;PCMU" ;
SnmpMibObject sipCfgPacketizationRate.0 Integer 20; /* twentyMilliSeconds */
VendorSpecific
{
VendorIdentifier 0x0015a4;
GenericTLV TlvCode 69 TlvStringZero "112|1xxxx|99x|3xx|00xxxx+T|0xxxxxxxxx"; /* tlv length = 38 */
}
MtaConfigDelimiter 255;
}

emkowale
Sweet

Yeah, I got it to work. I'm using these with Asterisk. My goal is to get Asterisk to ring both lines at the same time with one set of SIP creds.

Eric

kwesibrunee
Depends on whether you want

Depends on whether you want SIP or NCS

NCS would be (both ports default to on because activation is controlled on other end)

TelephonyConfigFileBeginEnd = 1
SnmpMib = ppCfgMtaCallpFeatureSwitch.0 hexstr: 00.A6.7B
SnmpMib = pktcMtaDevEnabled.0 true
SnmpMib = pktcSigDefCallSigTos.0 0
SnmpMib = pktcSigDefMediaStreamTos.0 0
SnmpMib = pktcNcsEndPntConfigCallAgentId.9 "some.callagent.id"
SnmpMib = pktcNcsEndPntConfigCallAgentId.10 "some.callagent.id"
SnmpMib = pktcNcsEndPntConfigCallAgentUdpPort.9 2727
SnmpMib = pktcNcsEndPntConfigCallAgentUdpPort.10 2727
SnmpMib = pktcNcsEndPntConfigMWD.9 10
SnmpMib = pktcNcsEndPntConfigMWD.10 10
TelephonyConfigFileBeginEnd = 255

Someone else included a SIP version so I won't add another here.

Log in or register to post comments