- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- TELNET Symbiont Changed Between VMS Versions?
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
06-16-2004 11:42 PM
06-16-2004 11:42 PM
TELNET Symbiont Changed Between VMS Versions?
One thing we've found is that we are getting blank pages at the start of some printouts, when we send setup modules. In this case, an escape sequence to put the printer into landscape.
This seems to be caused by the TELNET symbiont on 7.3-2 sending CRLF, whereas VMS 7.2-2 only sends CR.
I've attached the trace dumps for both.
Has anyone else seen this problem.
Robert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 11:43 PM
06-16-2004 11:43 PM
Re: TELNET Symbiont Changed Between VMS Versions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 11:52 PM
06-16-2004 11:52 PM
Re: TELNET Symbiont Changed Between VMS Versions?
Telnet isn't from VMS but TCPIP. Which version of TCPIP youre using ?
Do you have also set up the needed TCPIP$TELNETSYM_ logicals ?
These logicals must be active before starting the queue. So if logicals are changed, the queue need to be stopped and started. These logicals are only used when the queue is started. So sort of dynamic for new queues.
I think the following logicals wil help you:
TCPIP$TELNETSYM_RAW_TCP = "TRUE"
TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS = "35"
Minimize and structure youre messages and environment:
TCPIP$TELNETSYM_LOG_KEEP = "3"
TCPIP$TELNETSYM_NO_OPCOM = "TRUE"
TCPIP$TELNETSYM_SCRATCH = "
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2004 11:57 PM
06-16-2004 11:57 PM
Re: TELNET Symbiont Changed Between VMS Versions?
You may have lost a logical (2nd bullet).
If not what are/were your tcp versions ?
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 12:03 AM
06-17-2004 12:03 AM
Re: TELNET Symbiont Changed Between VMS Versions?
I've checked the logicals, and everything seems to be the same.
Any other ideas?
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 12:20 AM
06-17-2004 12:20 AM
Re: TELNET Symbiont Changed Between VMS Versions?
Having compared the dumpfiles, I don't see the difference in CR/LF and CR. In boths dumps, records seem bo be ending with the combination (hex) 0D0A.
Assuming that the dump are from the same (or a very similar) file - the second has one 80-character line moreat the end - most significant is a difference in initialisation. I don't know whether this is a symbiont thing, but I hardly think that would make a real difference.
I would take a good look at the form definitions.
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 12:25 AM
06-17-2004 12:25 AM
Re: TELNET Symbiont Changed Between VMS Versions?
if you look at the 'initialisation' (where the setup module is sent) for the text "&l2E", this is where the LF is sent as an extra piece of data.
I believe this is causing the blank page, but why are 5.1 and 5.4 doing different things?
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 01:35 AM
06-17-2004 01:35 AM
Re: TELNET Symbiont Changed Between VMS Versions?
http://h71000.www7.hp.com/doc/73final/6526/6526pro_042.html#telnetsym_formfeed_suppression
Your logicals holds a different value or the behaviour changed. As I understand it, it should contain 35 or you will get the formfeeds.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 01:37 AM
06-17-2004 01:37 AM
Re: TELNET Symbiont Changed Between VMS Versions?
Beta:
(LNM$SYSTEM_TABLE)
"TCPIP$TELNETSYM_IDLE_TIMEOUT" = "0 00:00:10.00"
"TCPIP$TELNETSYM_RETRY_INTERVAL" = "0 00:00:30.00"
"TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS" = "34"
"TCPIP$TELNET_NO_REM_ID" = "TRUE"
Delta:
(LNM$SYSTEM_TABLE)
"TCPIP$TELNETSYM_ENABLE" = ".1.."
"TCPIP$TELNETSYM_IDLE_TIMEOUT" = "0 00:00:10.00"
"TCPIP$TELNETSYM_RETRY_INTERVAL" = "0 00:00:30.00"
"TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS" = "34"
"TCPIP$TELNET_ENABLE" = ".1.."
"TCPIP$TELNET_NO_REM_ID" = "TRUE"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 08:06 PM
06-17-2004 08:06 PM
Re: TELNET Symbiont Changed Between VMS Versions?
your TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS specifies "34", so I would _EXPECT_ you to get the foemfeeds, but, on _BOTH_ systems.
So I think you WILL get rid of your undesired formfeeds by adjusting the value (remember to re-start your queues!),
but, the question remains; "Why the difference between the versions?????"
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 08:31 PM
06-17-2004 08:31 PM
Re: TELNET Symbiont Changed Between VMS Versions?
you're barking up the wrong tree, mate.
There are no formfeeds in the datastream, other than those in the file itself.
The problem occurs when setup modules are sent. If I send the data without the modules, there is no blank page.
As I've said, I'm fairly convinced that it is the LF being sent after the setup module that is actually causing the balnk page, because this is seen by the printer as printable data. In v5.1 this LF is not sent.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 10:50 PM
06-17-2004 10:50 PM
Re: TELNET Symbiont Changed Between VMS Versions?
I've posted this before, but I don't see it, so now again (something wrong at W$dozes ?)
I know with previous versions that the logical "UCX/TCPIP$TELNETSYM_ENABLE" was needed. Now I cannot find the value/need for it.
With IP 5.x I don't use this anymore and I don't get this problem. At the web I can even not find the logical again.
Maybe you should consider to remove this, stop/start the queue again (dont forget the /reset).
Manual: 23:
'TELNETSYM adds escape (0xFF) bytes in the data stream so they are not mistakenly interpreted as TELNET protocol IAD commands.'
'TELNETSYM can remove (suppress) any form feeds (0x0c) characters that the OpenVMS print symbiont adds to the beginning or end of print jobs. Use TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS logical name to control this function, as described in Section 23.6.4.1'
And reading this section I think you set a value of 35 or 17.
Yes, still I don't understand the differend interpretation. It is cheap to say, but don't forget it's IP. Some bugs are features.
AvR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 01:10 AM
06-18-2004 01:10 AM
Re: TELNET Symbiont Changed Between VMS Versions?
NOT the same. Delta holds:
"TCPIP$TELNETSYM_ENABLE" = ".1.."
might be a result of different cut-'n-paste, but if not:
What the dots stand for - presumibly non-printable characters. I don't know what this logical does (didn't look it up) but if this system that prints that extra linefeed or causing a formfeed to start (blank page?) you may have found the reason.
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 01:18 AM
06-18-2004 01:18 AM
Re: TELNET Symbiont Changed Between VMS Versions?
The logicals are defined by the startup procedure (tcpip generate servi).
But normally they are removed after startup (on my version 5.3 eco3).
Maybe startup went wrong ?
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 01:42 AM
06-18-2004 01:42 AM
Re: TELNET Symbiont Changed Between VMS Versions?
Retested printing, but still producing a blank page.
I really honestly and truly think someone has changed the symbiont, possibly without realising the impact.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 02:47 AM
06-18-2004 02:47 AM
Re: TELNET Symbiont Changed Between VMS Versions?
You're probably right. But if I was you, I would try the 35 and see if it works. Maybe the old 34 worked incorrectly and worked as 35.
HP should make a web interface where you can select an exe and see al the modifications that are done (within a VMS version). Even the smallest one.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 03:23 AM
06-18-2004 03:23 AM
Re: TELNET Symbiont Changed Between VMS Versions?
For patches this already exists - What exe's have been changed is in patch release notes. The idea to have an interface where the history of chnages in _executables_ could be traced has my approval!
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 05:54 AM
06-18-2004 05:54 AM
Re: TELNET Symbiont Changed Between VMS Versions?
if this idea becomes a request and needs supporters: count me in.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2004 03:47 AM
06-21-2004 03:47 AM
Re: TELNET Symbiont Changed Between VMS Versions?
Martin H
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 10:29 PM
06-22-2004 10:29 PM
Re: TELNET Symbiont Changed Between VMS Versions?
By default TCPIP will add a
Really a SETUP module with none ANSI standard escape sequences should be wrapped in EscP
However a third bit setting was added to the suppress formfeed setting. Thus to retain your previous setting of 34, but also suppress the adding of the FF to the SETUP module you should now set it to 42
34 had bits 5 and 1 set. Setting bit 3 increases this to 42 (i.e add 8)
Hope this helps,
Jed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 06:58 PM
06-28-2004 06:58 PM
Re: TELNET Symbiont Changed Between VMS Versions?
is your problem now solved ?
Jed,
Where is this 3rd bit documented ? Where are the release notes ? Starting from which tcp version ?
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 08:22 PM
06-28-2004 08:22 PM
Re: TELNET Symbiont Changed Between VMS Versions?
I'm waiting for it to come back, so I can pick the problem up again.
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 08:57 PM
06-28-2004 08:57 PM
Re: TELNET Symbiont Changed Between VMS Versions?
The 3rd bit received very brief documentation in the UCX 4.2 ECO 3 release notes. One day it might make the Management Guide ? ;0)
Have to say, I thought it wasn't introduced until TCPIP (rather than UCX), but looks like I'm wrong (not the first time)
Jed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 10:05 AM
10-04-2005 10:05 AM
Re: TELNET Symbiont Changed Between VMS Versions?
I've had the same problem for years (this is going way back to VMS 5.5 and UCX) and have just written it off as not being repair-able. Were you able to solve the problem with the TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS set to 42? It doesn't work for me.
Right now, I'm doing a lot more with the HP printer. I'm not just sending escape sequences to turn on/off features of the printer, I'm also sending macros (like pre-printed forms) which get overlaid on the printout as if being printed on a pre-printed form.
The issue of the form feed before the printout is a real pain; I'm interested in finding out if you were able to get it fixed.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2005 08:28 PM
10-04-2005 08:28 PM
Re: TELNET Symbiont Changed Between VMS Versions?
For reference, we're still using these logicals :-
ALPHA_ROB$ sh log *telnet*
"OPENVMS$TELNET" = "SYS$SYSTEM:TCPIP$TELNET.EXE"
"TCPIP$TELNETSYM_IDLE_TIMEOUT" = "0 00:00:10.00"
"TCPIP$TELNETSYM_RETRY_INTERVAL" = "0 00:00:30.00"
"TCPIP$TELNETSYM_SUPPRESS_FORMFEEDS" = "34"
"TCPIP$TELNET_NO_REM_ID" = "TRUE"
Rob.