Can I use 2 different id's in .netrc for same dest. machine.


 
Thread Tools Search this Thread
Special Forums IP Networking Can I use 2 different id's in .netrc for same dest. machine.
# 1  
Old 10-15-2010
Can I use 2 different id's in .netrc for same dest. machine.

I have 2 different id's for an ftp destination. Each id handles files differently on the destinations end. Is it possible to have one destination machine and assign an alias name for each id. The .netrc file doesn't allow this.
# 2  
Old 10-15-2010
Step-back-perspective question: Have you considered using ssh2/scp2 ?

Does it work with mixing the fully qualified domain host name, the unqualified host name or IP?
# 3  
Old 10-18-2010
It always helps to know what Operating System and Shell you are running.
The following advice is general to mainstream unix Operating Systems and may well work with unix derivatives and variants:

The .netrc file is sourced relative to the value of $HOME.
The target ftp login name can be a parameter in a Shell "case" statement.
If you change and export $HOME just prior to invoking "ftp" you can have as many .netrc files as you like held in distinct directories. In your case this allows you to have multiple .netrc files for the same host all with different ftp login names.

Hope this helps.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using rsync --link-dest pointing to a remote server

Ok, I'm trying to figure out how to reference a remote file using the rsync --link-dest parameter. Here is the code I have so far: # # FILESERVER INCREMENTAL BACKUP SCRIPT # # Remove previous log file rm /usr/local/bin/rsync-incremental.log # Set daily variables DAY0=`date -I`... (6 Replies)
Discussion started by: Orionizer
6 Replies

2. UNIX for Dummies Questions & Answers

Help with rsync using link-dest

Hi, I'm trying to keep backups of my home directory (i.e. back it up every day or so) using rsync with link-dest. This is how I do it, rsync -avh --delete --link-dest=/media/disk/oldbackup/ /home/user/ /media/disk/newbackup rm -f /media/disk/oldbackup ln -s newbackup... (1 Reply)
Discussion started by: lost.identity
1 Replies

3. Shell Programming and Scripting

makefile sourc and dest are in different directory

Hi, in makefile, if the sourc and dest in different directory, no matter the source file changed or not, it seems the dest always been build, how do you resolve this? Thanks. peter (1 Reply)
Discussion started by: laopi
1 Replies

4. Shell Programming and Scripting

Help with macdef (.netrc)

Am trying a shell script for ftp process on Solaris I am trying to mget files to Destination server: myserverxxx1 folder : /backup/dumps/SERVER-1backup/afterbatch From Source server: SERVER-1 folder : /dumps/daily/backupafterbatch/Thu21Oct_04:22:37 depending on the date the... (1 Reply)
Discussion started by: sunnyboy
1 Replies

5. UNIX for Dummies Questions & Answers

rsync with --link-dest doesn't create hard links

I have been experimenting with rsync as a scriptable backup option, reading various example and tips pages, including Time Machine for every Unix out there - IMHO That page seems to describe the exact behavior I want: The ability to make a "full backup" snapshot regularly, but with rsync... (0 Replies)
Discussion started by: fitzwilliam
0 Replies

6. Red Hat

Netrc for Linux

What is the proper format for configuring the netrc file for linux. On Solaris it was: Machine <machinename> login Domain\\login password passwordname (1 Reply)
Discussion started by: soupbone38
1 Replies

7. UNIX for Advanced & Expert Users

using .netrc

Hi friends, Can we use the file .netrc for automating ftp from a perl script ? and if so then how do i go about it ? can i have a sample script for this ? thanks in advance Veera (6 Replies)
Discussion started by: sveera
6 Replies

8. UNIX for Dummies Questions & Answers

.netrc file

hello, I am trying to write an automated script to transfer multiple files to another solaris 5.8 box. I am using the #! /bin/bash prompt and I am having trouble finding/creating the .netrc login file. I googled and the only info I got was that I should create/find it in my home directory. I went... (2 Replies)
Discussion started by: grandtheftander
2 Replies

9. UNIX for Dummies Questions & Answers

Help in .netrc

Hi, I would like to ask if the .netrc file should really be stored/placed in the /home/<userid> directory or in the home directory indicated by the uinfo command? I am currently having problems with a .netrc file which is owned by a id which has it's home directory pointed to a... (2 Replies)
Discussion started by: edu_escandor
2 Replies

10. UNIX for Dummies Questions & Answers

.netrc multiple ftp jobs to same machine

I have an ftp user, which has been setup to run ftp jobs to a specific machine (different jobs). for the first job i created .netrc in the ftp users home directory and added the appropriate commands machine FTPBOX01 login user1 password xxx macdef init etc etc get file bye I use the... (3 Replies)
Discussion started by: hcclnoodles
3 Replies
Login or Register to Ask a Question