I am writing an application that requires to ssh and telnet to a device at the same time. The pseudo code goes something like this.
p1 = pexpect.spawn("ssh to the device")
p1.send("run some command")
p1.expect("..")
p2 = pexpect.spawn("telnet to same device")
p2.send("run a command that can be run only through telnet")
p2.expect("..")
p1.send("run some other command")
p1.expect("..")
p2.send("run another command that can be run only through telnet")
p2.expect("..")
If you notice, I need synchronization between two pexpect children in order to run them one after the other. I searched a lot but could not find any information. please help.
Thanks