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!

Password change on 400 Passport 7k 1

Status
Not open for further replies.

Blaess

Vendor
Jun 4, 2002
2
0
0
CA
Hi
I've got a problem. We would like to change the password in our network. The problem is, we have over 400 Passport.
I'm looking for a tool or a script to change all Nodes automatic.
Thanx for your reply
Cheers
Blaess
 
hi,
u can use tool of auto telnet,such as "Tera term pro" or nortel' mtelnet,u can write the script to change the password
 
If you have a example of a Tera Term Pro Script, please let me know.
I'm looking for a script with a loop, to run the script on different ips (nodes) from a list of IP addresses.
Thx Blaess
 
I have asked to join your forum. I am sure you are very busy and do not have time for my question. I am a doctor and very much an armature on programming but dangerous enough to get me in trouble. I have been researching for about 10 hours on using the help and internet on Tera Term macros or scripts. I have created the following script below and I use this to submit insurance claims to a clearinghouse. As you will see the logon is quite extensive and I have successfully made this script work up to the point of transmitting a file. I need to send the file zmodem out of a different directory the teraterm. I am providing you with my script where I receive an error when it gets to the changedir command. And if I do place the file in the teraterm directory and remove the changedir command line I still get and error on the zmodem command line. This is probably something you do not want to deal with. And I am sure I am showing my ignorance. If by chance you have a suggestion other than a flame I would appreciate if greatly. Thank you for your time.



Richard Zenger

rgzing@aol.com



This is the macro for file transmission: I understand if you do not care or have time. Just a shoot in the dark looking for assistance. It has been 25 year since I did programming of any kind at University of Tennessee. And we used punch cards!!!



; macro for Tera Term

; Dial-up login



; open Tera Term

; command line = 'TERATERM /C=3' (COM1 port)

connect '/C=3'



DialPrefix = 'ATD'



; set phone number, username, and password

PhoneNumber = '1,555-555-1212'

Productionprompt = '(P/T)?'

Production = 'p'

Correctprompt = '(Yes or No)'

Correct = 'yes'

Loginprompt = 'Logon ID:'

Login = 'yyy1234'

Passwordprompt = 'Password:'

Password = 'pass123'

Uploadprompt = 'G)oodbye'

Upload = 'U'

Submitterprompt = 'Submitter/Provider:'

Submitter = 'S'

Medicalprompt = 'type:'

Medical = 'M'

Zipprompt = '(Y/N)'

Zip = 'Y'

Fileprompt = 'K)ermit'

File = 'Z'





; initialize modem (see the manual for your modem)

sendln 'ATZ'

wait 'OK'



; dial up



:dial

send DialPrefix

sendln PhoneNumber



; set timeout (30 sec)

timeout = 30



; wait for strings from modem

wait 'CONNECT 9600' 'BUSY' 'NO CARRIER'



; pause 2 sec

pause 2



; timeout?

if result=0 goto conn



; 'CONNECT'?

if result=1 goto conn



; 'BUSY'?

if result=2 goto redial



; 'NO CARRIER'

if result=3 goto error



; error. stop macro

:error

messagebox 'Dialing error!' 'Tera Term'

end



:redial

yesnobox 'Busy! Try again?' 'Tera Term'

if result goto dial

end



; connect!

:conn



; login

wait Productionprompt

pause 2

sendln Production



wait Correctprompt

pause 2

sendln Correct



wait Loginprompt

pause 2

sendln Login



wait Passwordprompt

pause 2

sendln Password



wait Uploadprompt

pause 2

sendln Upload



wait Submitterprompt

pause 2

sendln Submitter



wait Medicalprompt

pause 2

sendln Medical



wait Zipprompt

pause 2

sendln Zip



wait Fileprompt

pause 2

sendln File

pause 3

This is where the program bombs out!!

zmodemsend 'test.dat' 1

if result = 1 goto logoff



:logoff

wait ‘transfer complete’

send ‘n’

wait ‘goodbye’

send ‘g’

end






 
You need a tool Called CLIMaximiser that is produced by Nortel. It allows you to log onto multiple passports using the IP. Once you have entered the addresses you can log on to them all simultaneously and run the script once.

Cheers
 
i'm looking for this tools "CLIIMaximiser" but i don't find it .
Can you give me a link to it ?
thank you.
 
No, this tool name CLImanager. Supports many nortel device, some features. Nice tool.
 
Blaes

If you have 400 Passports, you must have a Preside MDM.
If you have you can use the EPIC tool.

This is the UNIX version of the CliManager that is being mentioned in this thread.

You can run scripts with this tool and to multiple Passport Nodes.

If you need a copy of CLIManager 2.1 let me know.

If you want the script, let me know
 
yes,I'm looking for a copy of CLIManager
as well as the script.
thank you
 
j marwan

Where shall I send it? I can do you a template script, but you need to decide which permissions each user gets.

 
ok, you can send it to this mail adresse:
jamal.marouane@meditel.ma
thank you
 
i'm unable to connecting to Passport 1200 (Release 2.1.1.0)using CLIManager.
but using the same ip address and password i have access to it via telnet.

NB: it work for Baystack 450 devices.
 
HI Marwan

Can you please send me the CLIManager and the script on network22.gecis@gecis.ge.com

Mavvy
 
Hi Mankyway, are you still available to send out copies of CLIManager? Thanks....
 
>i'm unable to connecting to Passport 1200 (Release 2.1.1.0)>using CLIManager.
>but using the same ip address and password i have access
>to it via telnet.
I previosly see this bug and report for author CLI manager..
 
Hi Mankyway,

Please send to rp139@dcx.com.

Thanks.
 
Hi Riot6

The file is 16Mb, Do you have an FTP Site to transfer to?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top