Unattended ftp to Solaris


 
Thread Tools Search this Thread
Operating Systems Linux Unattended ftp to Solaris
# 1  
Old 05-19-2004
Unattended ftp to Solaris

I have a Red Hat 9 server which I am attempting to ftp a file to
a Solaris 8 server using a shell script to perform an unattended ftp. I have the following script setup to run:

#!/bin/sh
#
cd /tmp
ftp -v 192.20.20.5 << EOF 2>&1
cd /tmp
put gatherstats
bye
EOF

I created the .netrc file on the Linux server to access the Solaris server. When I run my shell script it hangs on the Linux server. Any help would be appreciated.

Thanks,

Mike
# 2  
Old 05-19-2004
you can try

ftp -n 192.20.20.5 <<!
user "user_name" "user_password"
cd /tmp
put gatherstats
bye
!

Note
"user_name" is the users ftp name and "user_password" users password

This method works but it is not secure, A secure
way of having secure ftp through script is to use
sftp. you need to install ssh and then export the
public key, this way you will be able to use sftp without the need to have passwords in script.
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. AIX

Unattended installation of AIX 7.2

While doing an unattended installation of AIX 7.2 -- 002 I noticed this error when I was passing by the screen Filesets processed: 428 of 761 System Installation Time: 1 hr 12 mins Tasks Complete: 60% installp: APPLYING software for: Java5.sdk 5.0.0.620 Restoring... (3 Replies)
Discussion started by: filosophizer
3 Replies

2. Red Hat

Cisco UC Unattended installation

Hi All, Goal: Unattended installation of Cisco UC apps (i.e. Cisco Unified Communications Manager). Cisco UC uses RHEL as its OS. Challenge: Bypass the "Proceed with Install" prompt (see attached image named CUCM.png). I did research about Kickstart but I couldn' find the answer. I have also... (3 Replies)
Discussion started by: linuxn00b1
3 Replies

3. UNIX for Advanced & Expert Users

Unattended disk image deployment?

Hi I need a system that allows a PC to PXE boot and then fully unattended deploy a diskimage created from a Linux system with identical hardware and then reboot when finished. I have been looking around but have not found a tool that is capable of doing this without too many bells and whistles,... (2 Replies)
Discussion started by: smith0083
2 Replies

4. Shell Programming and Scripting

Running scripts unattended

Hi guys just wondering how i could make one of my scripts run unattended without the use of cron? (3 Replies)
Discussion started by: musicmancanora
3 Replies

5. Solaris

unattended single user mode patching

hello, i was certain i saw something on this earlier. but does anyone have any links, tips, or scripts they can share on ho to install and schedule single user patches remotely? (2 Replies)
Discussion started by: darkog
2 Replies

6. Shell Programming and Scripting

FTP script to FTP file to UNIX - Solaris

Hello, A couple of times per week, i receive emails notifications when files are available for processing. Currently i read these eamails with a java program and store the attachement on my C: drive and would now like to generate a PC script to send this file name up to UNIX-Solaris and... (3 Replies)
Discussion started by: bobk544
3 Replies
Login or Register to Ask a Question