![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to implement Centralized logging server | neel.gurjar | SUN Solaris | 0 | 07-07-2007 04:39 PM |
| Transfer file from local unix server to remote server | indira | Shell Programming and Scripting | 2 | 05-03-2007 06:35 AM |
| Transfer file from local unix server to remote server | indira | HP-UX | 2 | 05-02-2007 05:15 PM |
| Problem with logging into remote host | patil_reddy | Shell Programming and Scripting | 4 | 06-13-2006 06:42 AM |
| Delay when logging in remote | alfabetman | UNIX for Dummies Questions & Answers | 8 | 10-08-2001 10:55 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
logging to remote server
Hi,
I want to log-in to a remote server using shell script. The server requires the following while allowing a connection: username password one - letter authorisation. How can i implement this in my script? thanks, abey |
|
||||
|
try man page for ftp or rlogin.
for ftp use syntax as export FTP_HOST= export FTP_UID= export FTP_PWD= export FTP_DIR= ftp -n << EOF! open ${FTP_HOST} user ${FTP_UID} ${FTP_PWD} commands quit EOF! Regards, Manish Jha |
|
||||
|
Running jobs remotely
If you're using HP-UX you should have remsh available. The "remsh" allows you to access remote machines, assuming you have authority to do so, and
execute programs, commands et al. You should examine the man page for remsh, you should find it useful. Good luck! ![]() |
|
||||
|
As mr-synapse told you
HP-UX has the remsh command. Albeit, I would advise you to use SSH instead. Nowadays no r* commands should be used anymore becuase passwords are transmitted in clear text. You can download the HP-UX SSH port as ready bundeled depot from here http://h20293.www2.hp.com/portal/swd...Number=T1471AA and simply install it via swinstall |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|