Hi,
I am using the Net::OpenSSH module to write a Perl script that can copy a file from a Windows 2003 server to a Solaris 10 server. The Perl script runs on the Solaris machine and tries to open an SSH connection like this:
#!/usr/local/bin/perl
use Net::OpenSSH;
my $remoteserver='nms4';
my $remoteuser='tftp';
my $ssh = Net::OpenSSH->new('$remotehost', user => '$remoteuser', stri
+ct_mode => 0);
I need 'strict_mode => 0' due to permissions set on the higher-level directories, however I always get the same error whether I use 0 or 1:
Couldn't establish SSH connection: ctl_dir /home/tftp/.libnet-openssh-
+perl/ is not secure at /usr/local/bin/engsql01_backup line 36
The permissions on .libnet-openssh-perl are set to 0700 and that directory is owned by the user running the script:
drwx------ 2 tftp nobody 512 Jun 29 14:15 /home/tftp/.libn
+et-openssh-perl
Can anyone give me a pointer in the right direction on how to fix this?
|\/|artin
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.