Connection issues to unix and windows??

Ask a Question related to UNIX Programming, Design and Development.

  1. #1

    Default Connection issues to unix and windows??

    New to unix, searched a lot on net to find out how to connect from
    unix to unix, unix to windows, windows to unix and windows to windows
    through command line I mean scripts.

    Requirement is to gather files from various locations for which I know
    the ipaddress, login&password and folder to copy. Like to use scp for
    unix to unix boxes, and ftp to windows boxes. Sometimes FTP service is
    not enable on some of the NT boxes.

    This is exactly what i am looking for....
    write a script reads a file for ipaddress, login&password folder to
    copy, server connectivity method and then parse it.
    Once parsing is done copy these values in variables and run commands
    in loop for all the entries in the file. USE through FTP and SCP for
    possible machines to copy files.

    Issues with this method: No modification allowed on connecting
    servers

    1. sometimes ftp not enable at windows machines?
    2. scp asked for password while connecting to unix boxes. I tried
    copying identity file info from client machine to authorized_keys on
    my server. still not working asking for password. Looks like I am
    seriously missing some step here!
    3. Is there is any method to connect to nt boxes to copy files without
    using ftp as ftp needs to be enabled on client servers, which is not
    an option.



    Thanks in advance..
    Prakash
    Prakash Heda Guest

  2. Similar Questions and Discussions

    1. Establish a connection telnet in PHP on a UNIX server
      Hello, I wish to establish a connection in language PHP on a UNIX server by telnet. In fact, I would like : - Connect to server by sending IP...
    2. PHP for windows or unix
      I was wondering what, if any, difference there was between PHP for windows and Unix? at the moment I develop websites in ASP (as I am more...
    3. Help with fileglob: Unix vs. Windows?
      Hello... This script works fine on Unix: #!/usr/local/bin/perl use warnings; use strict; my $dir = "/usr/home/admin"; my @files = glob...
    4. Windows Services for Unix 3.0
      I am trying to get a Sun computer to work with Windows Services for Unix 3.0 and am having a lot of trouble. This is for testing purposes so I have...
    5. Windows 98 vs. Unix
      My computer operates on Windows 98. My provider is Windows 98 based. In order to process the forms in my website I've been trying to utilize...
  3. #2

    Default Re: Connection issues to unix and windows??

    On 10 Jul 2003 00:01:48 -0700, Prakash Heda
    <heda_prakash@hotmail.com> wrote:
    >
    > 1. sometimes ftp not enable at windows machines?
    > 2. scp asked for password while connecting to unix boxes. I tried
    > copying identity file info from client machine to authorized_keys on
    > my server. still not working asking for password. Looks like I am
    > seriously missing some step here!
    > 3. Is there is any method to connect to nt boxes to copy files without
    > using ftp as ftp needs to be enabled on client servers, which is not
    > an option.
    >
    If samba is installed on the *ix box, use smbclient.


    --
    Here I am, fifty-eight, and I still don't know what I want to be when
    I grow up.
    -- Peter Drucker

    Bill Marcum Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139