How to access a NAS storage path via FTP?
807557Jun 2 2008 — edited Jun 2 2008Hello,
I would like to know how to access a NAS path from solaris 10 via FTP. Basically I have to write a script to automatically transfer some files to a NAS Storage path. I have written the generic script. But I am not familiar with NAS storage paths (windows style)
I have the IP, user name and password for the NAS shared path. I am stuck at how to access the path. NAS path given to me is \\10.28.138.25\LMS_Stage\dsu.
Now how would solaris look at the windows style path.
This is what I am doing within my script
ftp -n 10.28.138.25 << EOF
user $user $pwd
cd LMS_Integration_Stage\dsu ----- Does it work this way?
bin
put $file $file1
quit
EOF
Any suggestion would be helpful.
Thanks