# ***** CKERMIT.INI.PROTO ***** # This is a prototype version of a CKERMIT.INI initialization file. # It is provided with revision 5.184 of C-Kermit for AOS/VS. In order # to use it, you must rename it to CKERMIT.INI, and edit it to # suit your particular needs. As provided, it takes the following # actions: # # 1. Sets the Kermit CONNECT-mode escape character to ^] # 2. Sets the Kermit prompt to "AOS/VS C-Kermit>" # 3. Increases the level of file transfer error-checking # 4. Changes the file collision action for incoming files to "rename" # 5. Changes the file transfer character set to ISO Latin 1 # 6. Changes the display type for file transfers to "crt", which # causes more information to be displayed (e.g. percentage # completed) # 7. Defines a macro called "cli" to start a subordinate # CLI process (equivalent to "push" or "!") # 8. Defines a macro call "reset" to reset the screen display # of a native Data General Dasher-style terminal # 9. Turns on transaction logging, which causes information about # file transfers to be stored in TRANSACT.LOG # 10.Increases the default window size and the default send # and receive packet sizes. These may need to be # adjusted. If you have a very noisy modem line, you # might have to decrease the packet sizes. If you're # using a Telnet connection, on the other hand, you # may want to increase them for better performance. Note # that packet and window sizes must match those of the # remote Kermit. NOTE: These statements are commented out, # so if you want to use them, you must remove the pound # sign in column 1. # set escape 29 # This is ^] instead of ^\ set prompt AOS/VS C-Kermit\62 # So we'll know what Kermit we're talking to set block-check 3 # Most rigorous error-checking set file collision rename # For compatibility with MS-DOS Kermit default set file display crt # Remove this line if using hardcopy terminal set file char dg-international # To translate DGI characters set transfer char latin1 # Standard 8-bit character set define cli push # "CLI" macro starts a subordinate CLI process define reset - # Macro to reset Dasher terminal run write [!ascii 236 306 301] log transactions # Keep log of file transfer statistics # Uncomment the following three commands to enable long packets and # sliding windows. # # set send packet-length 256 # Increase default packet size # set receive packet-length 256 # Increase receive packet size too # set window 5 # Allow multiple outstanding ack's