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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Listing all disabledTN`S

Status
Not open for further replies.

mitelsx2000

IS-IT--Management
Aug 28, 2003
32
0
6
NZ
How do you list all disabled TN`S on a Pabx with out doing a STAT on a loop-card etc
 
Hello you can go into LD 32 or LD 20 and give in LDIS X Y

X = Number of the Cabinet or Superloop

Y = number of the shelf

in a Opt.11 or cs1000s you only need X

LDIS 1 (Option11 first Cabinet)

LDIS 4 0 (large System Loop 4 Shelf 0)

 
two ways that i use at least once a week.. for just digital, ld 117 inv generate midnight, inv prt sets. that does an idu of each digital.. i also use it to catch free upgrades.. people see an empty cube and presto, they have a display phone..

another way is to use a script.. ld 32 ldis 4 0, gives you one shelf, so if your running procomm
Code:
proc main


transmit "****^M"
mspause 10


CAPTURE ON

transmit "ld 32^M"
 
    waitfor "."  forever
transmit "LDIS 4 0^M"
    waitfor "."  forever
    pause 10
transmit "LDIS 4 1^M"
    waitfor "."  forever
transmit "LDIS 8 0^M"
    waitfor "."  forever
transmit "LDIS 8 1^M"
    waitfor "."  forever
transmit "LDIS 20 0^M"
    waitfor "."  forever
capture off

endproc

just plug in your supls

on a small system.. ldis 0, gives you cab 0

john poole
bellsouth business
columbia,sc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top