in reply to Re: perl + expect + signals
in thread perl + expect + signals

Actually the setup I have here is I have a serial connection to the machine in question through a terminal server.

Replies are listed 'Best First'.
Re: Re: Re: perl + expect + signals
by markd (Acolyte) on Dec 05, 2003 at 11:21 UTC
    seen as though I am putting in my solutions today I thought that I'd add the solution that worked to this problem too
    I serially connected to the host issued a reset and during the reset (at the point when size was being calculated) I used the following code to break into the host:
    $session->expect(20, "Size:"); $session->send("\030");
    simple really. The ascii codekey seemed to work for ctrl+x and this seemed to be the only thing that worked.