irthiza90 has asked for the wisdom of the Perl Monks concerning the following question:
Is there a possibility to create a two way connection with the server using perl program? i mean i have tried this code here
#!/usr/bin/perl use Net::SSH::Perl; my $host = "IP_adress"; my $user = "user"; my $password = "password"; my $ssh = Net::SSH::Perl->new($host); $ssh->login($user, $pass)
this creates a one way connection is there a method to create a two way connection and implemet commands on the host system ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: a perl program to create two way connection with the server
by atcroft (Abbot) on Mar 18, 2015 at 14:22 UTC | |
|
Re: a perl program to create two way connection with the server
by Anonymous Monk on Mar 18, 2015 at 12:56 UTC | |
by irthiza90 (Novice) on Mar 18, 2015 at 13:02 UTC | |
by Anonymous Monk on Mar 18, 2015 at 13:11 UTC | |
| |
by salva (Canon) on Mar 18, 2015 at 13:12 UTC | |
by irthiza90 (Novice) on Mar 18, 2015 at 13:33 UTC | |
|
Re: a perl program to create two way connection with the server
by afoken (Chancellor) on Mar 19, 2015 at 17:45 UTC |