The telnet host I am using does not have a prompt character, (it just goes into a blank newline when it is done), how then, should I use the Net::Telnet
perl module?
I tried setting prompt to // '' /\s/
or /\s*/
none of which worked.
''
gave error saying it was invalid, and // /\s/
and /\s*/
simply timed out.
my $t = new Net::Telnet (Timeout => 10, Prompt => '/\s*/');
edit: This connects fine, but when it tries to issue a command, it times out because it doesn't recognize the prompt.;