Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Nortel 81C R3.00+ Maximum SPN Entries?

Status
Not open for further replies.

HASAGO

Vendor
Sep 28, 2005
248
0
0
AU
I am wondering if there is a maximum setting configured in the Nortel PABX to nominate how many SPN entries can be configured? Is it configurable or is there a maximum limit set by Nortel?
 
Hi,

As far as I know there is no configurable maximum for SPNs. RLI's DMI's, etc can be limited, but as far as I know SPN's not.

There's probably a system limit, but I have now clue on what that is. At least 20+ [2thumbsup]


Marc D.

If Bill Gates had a nickel for every time Windows crashed... Oh wait, he does...
 
Hi Again,

I just created a script to program 1000 SPN's on a lab CPPM release 7.0 and a Lab SSC release 4.5 system. And they all got programmed (1000 - 1999) and the backup didn't give any errors. So it seems that 1000 is ok.

But remember this is a lab system and I do not know how a production system will react...

Code:
#$language = "VBScript"
#$interface = "1.0"

crt.Screen.Synchronous = True

Sub Main

DIM intSPN

	intSPN = 1000		' Start at 1000
	crt.Screen.Send "****" & chr (13)	' Load correct Overlay
	crt.Screen.WaitForString ">"
	crt.Screen.Send "ld 90" & chr(13)
	crt.Screen.WaitForString "REQ  "
	crt.Screen.Send "new" & chr(13)
	crt.Screen.WaitForString "CUST "
	crt.Screen.Send "0" & chr(13)
	crt.Screen.WaitForString "FEAT "
	crt.Screen.Send "net" & chr(13)
	crt.Screen.WaitForString "TRAN "
	crt.Screen.Send "ac1" & chr(13)
	crt.Screen.WaitForString "TYPE "
	crt.Screen.Send "spn" & chr(13)
	crt.Screen.WaitForString "SPN  "
	
	Do While intSPN < 2000		' Do the magic
		crt.Screen.Send intSPN & chr(13)
		crt.Screen.WaitForString "FLEN "
		crt.Screen.Send "0" & chr(13)
	'	crt.Screen.WaitForString "CLTP "	' Uncomment for release higher then 4.5
	'	crt.Screen.Send chr(13)			' Uncomment for release higher then 4.5
		crt.Screen.WaitForString "RLI  "
		crt.Screen.Send "0" & chr(13)
		crt.Screen.WaitForString "SDRR "
		crt.Screen.Send chr(13)
		crt.Screen.WaitForString "ITEI "
		crt.Screen.Send chr(13)
		crt.Screen.WaitForString "SPN  "
		
		intSPN = intSPN + 1
	Loop
	
	crt.Screen.Send chr(13)
	crt.Screen.WaitForString "REQ  "
	crt.Screen.Send "****" & chr(13)
End Sub

Code:
#$language = "VBScript"
#$interface = "1.0"

crt.Screen.Synchronous = True

Sub Main

DIM intSPN

	intSPN = 1000		' Start at 1000
	crt.Screen.Send "****" & chr (13)	' Load correct Overlay
	crt.Screen.WaitForString ">"
	crt.Screen.Send "ld 90" & chr(13)
	crt.Screen.WaitForString "REQ  "
	crt.Screen.Send "out" & chr(13)
	crt.Screen.WaitForString "CUST "
	crt.Screen.Send "0" & chr(13)
	crt.Screen.WaitForString "FEAT "
	crt.Screen.Send "net" & chr(13)
	crt.Screen.WaitForString "TRAN "
	crt.Screen.Send "ac1" & chr(13)
	crt.Screen.WaitForString "TYPE "
	crt.Screen.Send "spn" & chr(13)
	crt.Screen.WaitForString "SPN  "
	
	Do While intSPN < 2000		' Do the magic
		crt.Screen.Send intSPN & chr(13)
		crt.Screen.WaitForString "SPN  "
		
		intSPN = intSPN + 1
	Loop
	
	crt.Screen.Send chr(13)
	crt.Screen.WaitForString "REQ  "
	crt.Screen.Send "****" & chr(13)
End Sub


Marc D.

If Bill Gates had a nickel for every time Windows crashed... Oh wait, he does...
 
I'm not aware of any limits, but I seem to recall that every 5th entry on an SPN needs a space when entering it in.

i.e. you can't have SPN 008000, but it has to be configured as 0080 0. This is the case at release 04.50 that I tried today as shown below.

>LD 90
REQ NEW
CUST 0
FEAT NET
TRAN AC1
TYPE SPN

SPN 00800

ESN115

SPN 0080 0
FLEN 13
ITOH
RLI 2
SDRR
ITEI

SPN

REQ


All the best

Firebird Scrambler
Meridian 1 / Succession and BCM / Norstar Programmer in the UK

If it's working, then leave it alone!.
 
That is also true for NPA

OLD ROLMEN WORKING ON NORTELS AND AVAYA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top