Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

solutionsville

Is this possible to do from a script with WinSCP

Martin,

I am trying to figure out if I can do this from a script via WinSCP.

Basically, it is launch a script, Telnet to another Internal IP, Login and then run two commands and exit from telnet, and end the connection.

Here is how I would do it form SSH or telnet;

Using SSH, it would look like this:
ssh <LAN2 IP address>
<login with linux user/pass, default = root/****>
<from linux prompt>
telnet 192.168.77.101 <this internally connects from the linux processor to the main processor’s command line>
<login with CCI password, default = *******>
debug val 0x00 <to turn off>
debug val 0xDF <to turn on>
exit
exit

Using telnet it would look like this:
telnet <LAN2 IP address> 2323
<login with CCI password, default = ********>
debug val 0x00 <to turn off>
debug val 0xDF <to turn on>
exit

Thanks,