- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Serial connecting PLC on Alpha1200 TTA0
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
02-27-2008 04:29 AM
02-27-2008 04:29 AM
Serial connecting PLC on Alpha1200 TTA0
I'm connecting a Programmable Logic Controller on my TTA0 of the Alpha1200 and the Alpha keeps on thinking this port trying to login.
When I connect this PLC on a terminalserver everything works fine. A program connects to the port and does the interfacing. Because the port is continuesly logging in the program cant get connection to this port. The sessings of the terminalserverport are identical to the TTA0. The only difference is that the terminalserverport is a RJ45 and the serialport is a DB9 (and has modemcontrol etc).
I already tried (I think) all the possible settings there are possible. On the whole plant all the PLC are connected by terminalservers and these are working fine.
Normaly TTA0 is being used by a modem and this was working fine (not continuesly loging in etc.).
Tomorrow I'm going (again) to this costumer so maybe I can add the portsetting to this tread.
The reason for this action is to eliminate the terminalserver because there is only one port used.
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 04:42 AM
02-27-2008 04:42 AM
Re: Serial connecting PLC on Alpha1200 TTA0
Try set the SYSPASSWORD on port.
$ SET TERM/SYSPASSW TTA0:
It causes the port NOT to execute loginout.exe until a correct password is used.
Hakan Zanderau
HA-solutions
You will probably get more suggestions.......
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 04:50 AM
02-27-2008 04:50 AM
Re: Serial connecting PLC on Alpha1200 TTA0
The supported way is to set term/perm/notypeahead tta0:
and then have the program issue a setmode qio to turn that terminal characteristic on, and possibly to select alternate typeahead buffer so characters aren't lost.
Described in the io user's guide if I am remembering correctly.
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 05:06 AM
02-27-2008 05:06 AM
Re: Serial connecting PLC on Alpha1200 TTA0
What type of terminal server is it? If it is a "DECserver" or compatible, if the port is set to "ACCESS REMOTE" then it ignores unsolicited input (turns the phone ringer off). On a cisco, setting a line to no exec does the same thing.
2511# config t
2511(config)# line 5
2511(config-line)# no exec
2511(config-line)#^z
Those would be what I looked for when you go back.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 06:28 AM
02-27-2008 06:28 AM
Re: Serial connecting PLC on Alpha1200 TTA0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 08:10 AM
02-27-2008 08:10 AM
Re: Serial connecting PLC on Alpha1200 TTA0
I agree with the SET TERMINAL/NOTYPEAHEAD. It may also be desirable to permanently force certain other attributes as well.
Once testing is completed, these attributes should be forced fairly early in the startup process, to avoid problems with unexpected data arriving at inopportune moments.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 08:47 AM
02-27-2008 08:47 AM
Re: Serial connecting PLC on Alpha1200 TTA0
Really? I haven't had to worry about this
problem for a long time, but I'd expect that
you could do whatever you want at any time
before the magic "SET LOGINS /INTERACTIVE"
command is executed. Does anyone care what
happens on a port before that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 02:09 PM
02-27-2008 02:09 PM
Re: Serial connecting PLC on Alpha1200 TTA0
I've dealt with this issue many times. The terminal server doesn't know where to send stray input, so it gets dropped. On a fixed serial port with typeahead enabled, any input is seen as a login attempt, so OpenVMS starts a process running LOGINOUT to prompt for username and password.
As others have suggested, your startup procedure should SET TERMINAL/PERMANENT/NOTYPEAHEAD to prevent stray data from triggering a login. However, you probably WANT a typeahead buffer when your application is running so you don't lose data. Indeed it might even be a good idea to set TTY_TYPAHDSZ larger than the default 78 bytes - memory is cheap! Don't bother with TTY_ALTYPEAHD, just
set TTY_TYPAHDSZ to maximum value - 32K. This will cost very little, and make life easier for your application, without the need for code changes.
When your process wants to connect, it should use a sequence like:
$! Repeat the NOTYPEAHEAD, just in case
$! the startup didn't do it. If there's a
$! login happening, (from memory) the
$! SET TERM will hang until the other
$! process relinquishes the device.
$! Once it's set, further input will
$! be dropped.
$
$ SET TERM/PERM/NOTYPEAHEAD
$!
$! Now grab the terminal.
$ allocloop: ALLOCATE
$ IF .NOT.$STATUS
$ THEN
$ ! I recommend AGAINST a delay here.
$ ! You want to get this device before
$ ! anything else happens. Maybe code
$ ! a sanity check counter.
$ GOTO allocloop
$ ENDIF
$!
$! Now that you own the terminal, you can
$! reenable typeahead. This time we DON'T
$! specify /PERMANENT, so it will only
$! last for the duration of the ALLOCATE.
$!
$ SET TERM/TYPEAHEAD
$!
$! Now run your program, referring to the
$! logical name to open channels
$
$! After the program has run, it should
$! revert to /NOTYPEAHEAD when deallocated.
$ DEALLOCATE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 06:57 PM
02-27-2008 06:57 PM
Re: Serial connecting PLC on Alpha1200 TTA0
Here are some set term things to try:
$ SET TERMINAL/PERM/SPEED=9600/UNKNOWN/NOHOSTSYNC/NOWRAP/NOECHO/NOBROADCAST/NOTYPEAHEAD/REMOTE TTA0:
Would this by any chance be a program like Fortran communicating with the PLC? Typically, when you are talking to a PLC from a Fortran program, you would do a
status = SYS$ASSIGN('TT',ttchannel,,)
status = SYS$QIO(W) with a IO$_WRITELBLOCK or IO$_READLBLOCK with modifiers similar to this:
If you're reading from the PLC:
qiofncvms = IO$_READLBLK.OR. ! Read Logical Block.
1 IO$M_PURGE.OR. ! Purge the typeahead buffer.
2 IO$M_TIMED.OR. ! Time out the read operation.
3 IO$M_NOECHO.OR. ! Don't echo input to terminal.
4 IO$M_NOFILTR ! Supress interp of ctrl chars.
Where 'TT' would be assigned (defined) to your device in a DCL command file, in this case, TTA0:.
Also, the numbers in between the lines are continuation characters from a piece of Fortran code I cut and paste into this window.
If you're writing to the PLC:
qiofncvms = IO$_WRITELBLK ! VMS Write Logical Blk
qiofncvms = qiofncvms.OR.IO$M_CANCTRLO ! Cancel Control O
qiofncvms = qiofncvms.OR.IO$M_NOFORMAT
The long and short is, if your TTA0: port is logged out, and your application program assigns an I/O channel to it, that port should not be able to allow logins to it, because it is allocated to that particular program.
If you could, please do a show terminal LTAxxxx on your terminal server port to see what set term characteristics it has. You should be able to do whatever the terminal server is doing on your TTA0: port if the application program is assigned to TTA0:. You might have to check a .COM DCL file somewhere or it might be embedded in source code somewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 07:46 PM
02-27-2008 07:46 PM
Re: Serial connecting PLC on Alpha1200 TTA0
Huh?
/NOTYPEAHEAD mean that any input received when there isn't an active read posted is lost. /NOHOSTSYNC means the host has no way to flow control with the sender.
IO$M_PURGE on the read is redundant with NOTYPEAHEAD, but if typeahead is enabled, you throw away any buffered characters. Again data sent to the port is lost.
For a non-privileged application it should probably be IO$_READVBLK (Read Virtual Block). Granted for the terminal driver READLBLK is equivalent, but in theory it should need LOG_IO privilege, which isn't necessary for most applications.
I don't know what kind of application you're talking about, because all the ones I've ever worked on care very much about catching every character sent to the port! How can any protocol work if you're throwing away random chunks of data?
Assuming the sender does some form of flow control I'd expect it to be enabled, and a maximum sized typeahead buffer enabled.
Typically I'd also expect to see the reads on the port to be asynchronous with multiple read buffers. When a read completes, the completion AST would immediately post another read using the next free buffer and then place the current read buffer on a work queue to be processed by a different thread of execution. This design minimises the chances of losing data. Use large buffers and don't attempt to perform any parsing or other processing in the read AST thread, just shovel the data in as quickly as possible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2008 09:15 PM
02-27-2008 09:15 PM
Re: Serial connecting PLC on Alpha1200 TTA0
The issue is really why the Alphaserver 1200 thinks the PLC is trying to login when it is connected to the TTA0: port. This could be because the application is not assigning a channel to that port.
As far as the use of logical block vs. virtual block for the TT driver, and the QIO modifier functions, I posted, I don't have the TT Driver I/O reference manual in front of me. This is code that I wrote about 15 years ago for a steel mill that communicated with in plant devices such as Streeteramet scales, Femcos, etc. I also wrote an application that communicated with an Allen Bradley PLC5 using the TT driver. It worked great. Now that was 15-16 years ago. But as I recall, there are times you want to purge the typeahead buffer before posting your QIO to get rid of extraneous data that might throw things off.
Sometimes dumb devices get confused as well. I'm not trying to rewrite the guy's application. It seems like this particular issue is simply about switching RS232 ports, in which case there really shouldn't be any changes necessary to the existing source code. Probably just some changes in logical name definitions should do the trick. But you are more experienced at VMS than I so what do I know?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 03:26 AM
02-28-2008 03:26 AM
Re: Serial connecting PLC on Alpha1200 TTA0
I've attached the portsettings (show terminal) of the TTA0 and the LTA103.
Unfortunaly the /no_typeahead isn't working.
Also attached the portsettings when program is running (on LTA103:)
I also added the source code which does the connection.
The resultcode is 244
%SYSTEM-F-ILLIOFUNC, illegal I/O function code
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 04:04 AM
02-28-2008 04:04 AM
Re: Serial connecting PLC on Alpha1200 TTA0
How about letting the PLC login using ALF and then kill the process when the program wants to connect to the port ?
Could the program be started by the PLC logging in ?
regards,
Hakan Zanderau
HA-solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 04:50 AM
02-28-2008 04:50 AM
Re: Serial connecting PLC on Alpha1200 TTA0
So, by unplugging/plugging it looks solved, so maybe the /no_typeahead will work. This we will check.
Now it looks like the settings/control of a TTA serial port is other than a LTA serial port. Does anyone knows this ?
The biggest problem for now is the time. Because of the location we aren't able to be here every day. Also because of the nature is the development only connected to the PLC (which is running in production) and no where else connected to (even no network!). So only poss. to access this environment is on location.
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 04:50 AM
02-28-2008 04:50 AM
Re: Serial connecting PLC on Alpha1200 TTA0
It would be helpful to know the precise cabling being used. I have seen situations where the some devices did "unusual" things with the modem control and dataset lines that a signal aware interface had issues with. The RJ45 cabling may prevent that from happening. Also, consider the fact that the TTDRIVER handling of those signals (documented in the manual) may differ slightly from the effective handling of the server and the LATDRIVER.
A modem breakout box displaying the actual signals may be helpful in this situation.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 10:59 AM
02-28-2008 10:59 AM
Re: Serial connecting PLC on Alpha1200 TTA0
Now it looks like the settings/control of a TTA serial port is other than a LTA serial port. Does anyone knows this ?
Remember that the PLC and other such devices communicate with the port where they're physically connected.
It's the terminal server port's settings you need to look at to see how to set TTA0.
Physical device connection settings for LTA ports (like baud-rate and such) are different and some are meaningless because the terminal server is handling the device connection and your program is "talking" to the terminal server and device via a network connection.
We use something similar to John Gillings' example to handle the type_ahead problem. With dedicated port-devices, we set the port's "idle state" in a command file executed in systartup and the "active-state" gets set in the application startup.
If you have the PLC's specs or programming manual, that would be a good place to look.
But you say it's working now that it's plugged into the right port?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 11:05 AM
02-28-2008 11:05 AM
Re: Serial connecting PLC on Alpha1200 TTA0
DECserver terminal server devices also tend to use specific ports as a console for the DECserver itself, and this too can start the serial line connection a-chattering.
The problem and the solution here that most everybody (and the OpenVMS FAQ itself) has pointed at probably still exists with the PLC connected to another device, but so long as the application gets rolling before the host sends out a message (or a broadcast) and the PLC keeps its serial port quiet, you'll be back in your original state here.
Stephen Hoffman
HoffmanLabs LLC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 04:50 PM
02-28-2008 04:50 PM
Re: Serial connecting PLC on Alpha1200 TTA0
When you had the PLC connected to OPA0: you probably got into a feedback loop:
VMS sent an OPCOM message, the PLC saw it and said "What??", VMS saw the unsolicited input and started LOGINOUT, etc.
So the recommendation to turn it off broadcast is valid, since you don't want the PLC to be getting unsolicited data sent to it.
Without knowing more about what is connected, and what data is being sent back and forth, we are just guessing.
$ set term/nobroadcast/notypeahead/perm tta0:
And as suggested by others, doing an allocate followed by set term/typeahead
My preference would still be to use the alternate typeahead buffer instead of changing the default typeahead buffer to something as large as 32k. If you don't have a lot of terminals, it probably doesn't make much difference, but the typeahead buffers are in non-paged pool. With the alternate typeahead buffer you also control when flow control kicks in; with the standard typeahead it is fixed at 8 characters before the buffer is full. However, in your show terminal output you currently have /nohostsync /nottsync so you effectively have turned off flow control from the VMS perspective. Perhaps the terminal server was providing flow control (either xon/xoff or hardware with cts/rts).
So I would suggest reading http://h71000.www7.hp.com/doc/73final/6136/6136pro_016.html section 5.2.1.5 Type-Ahead Feature. Note that you may be able to take advantage of the terminal driver optimization by also setting the /PASTHRU qualifier.
We have Lantronix ETS terminal servers, but we are using telnet instead of LAT, some of this may not apply.
You should be able to log into the terminal server if you know the access password.
Once you get logged in, you can do show the port characteristics, stats and counters for port 5 with the commands:
ETS> show port 5 characteristics
ETS> show port 5 stat
ETS> show port 5 counters
Here is the output from a port close to the factory default setting. These have VT510 terminals attached.
B86ETS32A_Port_34> show port 5 char
Port 5 : Username: B86ETS32A_5 Physical Port 5 (Idle)
Char Size/Stop Bits: 8/1 Input Speed: 9600
Flow Ctrl: Xon/Xoff Output Speed: 9600
Parity: None Modem Control: None
Access: Local Local Switch: None
Backward: None Port Name: Port_5
Break Ctrl: None Session Limit: 1
Forward: None Terminal Type: Soft()
Preferred Services: (Lat)
(Telnet)
Authorized Groups : 0
(Current) Groups : 0
Characteristics: Autoprompt Broadcast Loss Notify Verify
Remote Conf Telnet Pad Menu
B86ETS32A_Port_34>
This is what a port we have a printer connected to, and we are using TCPIP$TELNETSYM to print to the device.
B86ETS32A_Port_34> show port 30 char
Port 30: Username: B86LP4 Physical Port 30 (Idle)
Char Size/Stop Bits: 8/1 Input Speed: 9600
Flow Ctrl: Cts/Rts Output Speed: 9600
Parity: None Modem Control: None
Access: Remote Local Switch: None
Backward: None Port Name: Port_30
Break Ctrl: None Session Limit: 1
Forward: None Terminal Type: Hard()
Preferred Services: (Lat)
(Telnet)
Authorized Groups : 0
(Current) Groups : 0
Characteristics:
B86ETS32A_Port_34>
Note that we turn all the characteristics off on the ports we have printers connected to, since we don't want anything sent to the printer except what we send it. And we use hardware flow control.
Also, you will want to disable broadcast at the terminal server level (and the VMS level) as those messages will confuse whatever is connected to the port.
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 07:29 PM
02-28-2008 07:29 PM
Re: Serial connecting PLC on Alpha1200 TTA0
I looked at your C code and I don't think the following Io functions you are presently using with the terminal server will work with TTA0:
if((( status = SYS$QIOW( 0, *chan, IO$_TTY_PORT | IO$M_LT_CONNECT
, &status_block, 0, 0, 0, 0, 0, 0, 0, 0)) & 1) != SS$_NORMAL) {
I believe these are for LAT terminal servers only. I think that is why you got the illegal function code error. The LAT terminal driver is a little bit different from the TT driver. I think you need to change these to either IO$_READLBLOCK or IO$_READVBLOCK.
I'm not sure if these LAT function codes purge typeahead first like IO$M_PURGE does, or whether your PLC communication needs it or not. The latter function code can be OR'd in with the other modifier, similar to how your existing code does the OR of function codes. I've not done this in C. I've done it in Fortran. But it should e similar.
Also, I there's a SYSGEN parameter for TTY_ALTYPAHD. When I wrote a program to talk to an Allen Bradley PLC5, I recall needing to set this to 1024. It is 400 by default on my Alphaserver 1200 (Top Gun Blue). Your PLC probably comes with some type of communication protocol docs somewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2008 08:09 PM
02-28-2008 08:09 PM
Re: Serial connecting PLC on Alpha1200 TTA0
$ set/perm/notype_ahead/altypahd TTA0:
That is disable typeahead and enable altypahd. Then I think you want to adjust the SYSGEN parameter tty_altypahd to something like 1024. Then I think you will want the IO$M_PURGE ORd with IO$_READVBLK in your C source code (recompile and relink). You might want to experiment this either way to be sure.
What kind of PLC are you using? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2008 06:18 AM
03-14-2008 06:18 AM
Re: Serial connecting PLC on Alpha1200 TTA0
The PLC is never logging in, its machinery.
@Bob
I've found in the documentation that the TT driver behaves quite difference than the LTA driver.
If whe change this program by modifying the behavior and check for TT or LTA port, I also (my opinion) need to change the other programs. Because the interfaces are probably changing there as well.
@Hoff
This is exactly what happend (I think). The PLC sends a 'NACK' (%X15) when it doesn't understand the message send (which needs to start with a 'ST'-bit (%X2)). But the strange thing what was happening is that previous the situation was that the machines booted up with the PLC on TTA0 and the behaviour was the same.
@DEXchange
Thanks for the code checking.
To all,
We (costumer and I) decided to not change the code (for this part) and go for the terminalserver solution. I mentioned the other PLC's in the hall and there are still some ports free on the terminalservers on the floor.
Only this PLC is ended in the computerroom (optical etc.) and here are no terminalservers.
The final will be that 1 terminalserver will be mounted with one port connected to this PLC endpoint. In the future we will try to move all the other connected PLC's to the computerroom.
Thanks for all of your input and thoughts.
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2008 06:26 AM
03-14-2008 06:26 AM
Re: Serial connecting PLC on Alpha1200 TTA0
I think you have made the correct choice: Keep everything as similar as possible. Since you are successfully using terminal servers other places, using them everywhere is best from a support standpoint.
Good luck,
Jon