c-kermit anyone?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers c-kermit anyone?
# 1  
Old 08-06-2007
c-kermit anyone?

Firstly, I would like to apologise at what I have no doubt is a very easy query. However, I have been roaming around the c-Kermit homepage for sometime now and I have yet to find an answer to my problem. I am trying to write short script that will automatically retrieve a file. To do this I am writing a .psl file using PowerTerms scripting language. My code is as you can imagine very simple. Something like the following:

Send “username”<cr>
Waiting for password 10<cr>
Send “password”
Send “Kermit” <cr>
Send “send filename” <cr>
Send “Ctrl-\ c” <cr>
Send “Receive C:\filename” <cr>
Send “exit” <cr>

As I understand it ctrl-\ and then a literal c is an escape sequence that should return me to the Kermit prompt, however this only occurs after the message “Too many retries”. I find it odd that it cannot connect to the file because If I do the receive file part through the GUI (i.e. Communications > Receive File > Kermit) it has no problems. I have tried using ftp as a work around, though when trying to send, ftp simply states that it is “not connected”. So yeah bit stumped as to why Kermit works through PowerTerm but not on the command line. Any suggestions would be greatly appreciated. Oh and if you haven't guessed im a bit of novice.

-Rob C-
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Ubuntu

establishing connection with e-kermit running on LINUX from my operating system

we designed a primitive operating system for learning basics fundamentals and we created process switching, interrupt/polled IO for device drivers like UART and printers. We accomplish this by using our own tools called SPEDE (for downloading compiled elf image from host ubuntu system that have... (0 Replies)
Discussion started by: bicepjai
0 Replies

2. Solaris

C-Kermit and SunOS 5.10

Has anyone managed to install C-Kermit successfully on SunOS 5.10? SunOS 5.10 Generic_141444-09 sun4v sparc SUNW,T5240 I installed with "make solaris9g64", the only make that worked. If I'm not mistaken, isn't there a test to see if ssl is available? Something like C-Kermit>define... (0 Replies)
Discussion started by: MichaelInDC
0 Replies

3. Shell Programming and Scripting

Kermit and

I have a small problem with kermit and after some days searching I don't find the solution. I have a FTP server with a local directory (ldirectory). If files appear in this directory they have to be send to another server, and deleted afterwards. The script don't take files with *.tmp extension.... (0 Replies)
Discussion started by: Zen11
0 Replies

4. Shell Programming and Scripting

How to send AT commands after getting into Kermit window?

We're using Kermit 8.0.209 in Linux environment. We're trying to invoke kermit from an application, send some AT commands and receive the responses from the End terminals like mobiles/modems. We access these deivces through serial ports. For eg., to send a file we use command-line options like... (4 Replies)
Discussion started by: pratiul
4 Replies

5. Shell Programming and Scripting

Kermit script

Hi, How can I read the second line in kermit? fread reads line in kermit. Thank you (1 Reply)
Discussion started by: kayarsenal
1 Replies

6. IP Networking

Kermit- dialup and network connection

hi all, Using kermit, i made serial dialup connetion between two PCs through telephone line and transfered files trough this line. The code appears as like this, set modem type generic #Setting the modem type. set modem data-compression on #Data compression on to speed up transfer.... (0 Replies)
Discussion started by: pcsaji
0 Replies

7. UNIX for Dummies Questions & Answers

About the kermit

I have a kermit file for HP unix , it work fine to download files , if I want to use it at AIX server , could I just copy it to AIX server ? if not , could suggest where can download it for AIX server ? and is it free ? am wonder whether kermit is a free package , I hv google it , but not find ,... (6 Replies)
Discussion started by: ust
6 Replies

8. Shell Programming and Scripting

C-Kermit scripting

Hi , I am using C-Kermit for automating FTP of files from my local Solaris Box to remote Solaris Box.I am able to send the files successfully. And i can also log the whole transaction into a log file.But i want a list of files ( redirected to some other file ) that went successfully and list of... (0 Replies)
Discussion started by: sveera
0 Replies
Login or Register to Ask a Question
UPSCLI_GET(3)							    NUT Manual							     UPSCLI_GET(3)

NAME
upscli_get - retrieve data from a UPS SYNOPSIS
#include <upsclient.h> int upscli_get(UPSCONN_t *ups, int numq, const char **query, int *numa, char ***answer) DESCRIPTION
The upscli_get() function takes the pointer ups to a UPSCONN_t state structure, and the pointer query to an array of numq query elements. It builds a properly-formatted request from those elements and transmits it to upsd(8). Upon success, the response will be split into separate components. A pointer to those components will be returned in answer. The number of usable answer components will be returned in numa. USES
This function implements the "GET" command in the protocol. As a result, you can use it to request many different things from the server. Some examples are: o GET NUMLOGINS <ups> o GET UPSDESC <ups> o GET VAR <ups> <var> o GET TYPE <ups> <var> o GET DESC <ups> <var> o GET CMDDESC <ups> <cmd> QUERY FORMATTING
To generate a request for GET NUMLOGINS su700, you would populate query and numq as follows: int numq; const char *query[2]; query[0] = "NUMLOGINS"; query[1] = "su700"; numq = 2; All escaping of special characters and quoting of elements with spaces is handled for you inside this function. ANSWER FORMATTING
The raw response from upsd to the above query would be NUMLOGINS su700 1. Since this is split up for you, the values work out like this: numa = 3; answer[0] = "NUMLOGINS" answer[1] = "su700" answer[2] = "1" Notice that the value which you seek typically starts at answer[numq]. ERROR CHECKING
This function will check your query against the response from upsd(8). For example, if you send "VAR" "su700" "ups.status", it will expect to see those at the beginning of the response. If the results from upsd do not pass this case-insensitive test against your request, this function will return an error. When this happens, upscli_upserror(3) will return UPSCLI_ERR_PROTOCOL. ANSWER ARRAY LIFETIME
The pointers contained within the answer array are only valid until the next call to a upsclient function which references them. If you need to use data from multiple calls, you must copy it somewhere else first. The answer array and its elements may change locations, so you must not rely on previous addresses. You must only use the addresses which were returned by the most recent call. You also must not attempt to use more than numa elements in answer. Such behavior is undefined, and may yield bogus data or a crash. The array will be deleted after calling upscli_disconnect(3). Any access after that point is also undefined. RETURN VALUE
The upscli_get() function returns 0 on success, or -1 if an error occurs. SEE ALSO
upscli_list_start(3), upscli_list_next(3), upscli_strerror(3), upscli_upserror(3) Network UPS Tools 05/22/2012 UPSCLI_GET(3)