- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Kermit 7.1.199: change modem config
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 08:35 PM
03-09-2005 08:35 PM
OpenVMS Developer & System Manager
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 10:55 PM
03-09-2005 10:55 PM
Re: Kermit 7.1.199: change modem config
Did you consult the manual at
http://www.columbia.edu/kermit/ckututor.html
especially the section about "Dialing with a Modem" ?
There is stuff like "set modem type" and "set speed"
Regards,
Kris (aka Qkcl)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 01:20 AM
03-10-2005 01:20 AM
Re: Kermit 7.1.199: change modem config
Send your details to kermit-support@columbia.edu
I have found the response time to be far better
than that for support services that costs lots
of money...
Have you tried using the latest C-Kermit (8.0.211)?
Regards
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2005 01:42 AM
03-10-2005 01:42 AM
Re: Kermit 7.1.199: change modem config
I guess you are referring to sequences like
(taken from that manual):
define mydial {
set modem type usrobotics
set port /dev/ttyS0
if fail end 1
set speed 57600
dial \%1
if success connect
}
Suppose I have a modem that is ALMOST like usrobotics in this example. Mind you"ALMOST. So I'd like to make another modem type - copied from the USROBOTICS one and change the appropiate items. But where to find that? There must be somewehere withing Kermit of one of the initialization files where this is defined. THAT's =the info I'm looking for.
Dave,
I'll pass this to the requestor - we should add this in our address books. I don't know why they use 7.1.119 - probabbly because it ain't broke so there is no need for a new version ;-)
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2005 12:07 AM
03-14-2005 12:07 AM
Solution>>>
Suppose I have a modem that is ALMOST like usrobotics in this example. Mind you"ALMOST. So I'd like to make another modem type - copied from the USROBOTICS one and change the appropiate items. But where to find that? There must be somewehere withing Kermit of one of the initialization files where this is defined. THAT's =the info I'm looking for.
<<<
The modem type table is compiled into the program. If you want to have a look at the sources: it's defined in CKUDIA.C, variable mdmtab, and used in CKUUS3.C.
That said, there's a type "user-defined", so you could
CKermit> SET MODEM TYPE user-defined usrrobotics
and make changes from there.
cu,
Martin