I am not sure if I understand the situation correctly. Are you using the windows computer as a terminal to the SCO box, or is this special software on the SCO box that is triggering some kind of process on the windows computer based on the signal over the port.
Here's what to check if it is a terminal related issue:
First, before making any configuration changes, make sure both the modem control and non-modem control versions of the port are disabled:
disable tty1a
disable tty1A
Second, make sure the terminal type is defined for that port.
The file /etc/ttytype should contain a line similar to:
Other terminal types such as "vt100" may also be used (see the "terminals" man page for a list of valid types).
It is also a good idea to define the terminal type for the modem control version of the port (tty1A).
Third, make sure the port has a valid gettydef entry.
The file /etc/inittab should contain two lines similar to:
Code:
Se1a:2:off:/etc/getty tty1a n
Se1A:2:off:/etc/getty -t60 tty1A n
Note: If the port is currently enabled it will say "respawn" instead of off. Do not alter the contents of the files while the port is enabled.
Also note: The last field on each line sets the communication speed ("n" happens to be 19200 on my system). Use a value defined in your /etc/gettydef file that matches the speed you want. I recommend you use one of the "a" through "n" entries. I do not recommend speeds above 19200 for a terminal.
Make sure the the exact same entries from the /etc/inittab file are also in the /etc/conf/init.d/sio file.
Fourth, enable the port.
If this port is just going to be used for a terminal you can probably use the non-modem control version of the port:
Or if this port is going to be used for file transfers or printing, you may want to use the modem control version of the port to allow for hardware flow control:
But do NOT enable both versions of the port.
If this is not a terminal related issue, you should try using the modem control port (tty1A) instead of the non-modem control port (tty1a).
If this doesn't help, try posting some more detail about what your program is designed to do.