- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- telnet compare with set host confused me ??
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-09-2004 06:16 PM
тАО09-09-2004 06:16 PM
I have a question about what's the difference between telnet and DCL command "set host"
Followings is the version of each machines I use
A: TCP/IP ver4.2 Openvms 6.2
B: TCP/IP ver5.1 Openvms 7.2-2
C: TCP/IP ver5.1 Openvms 7.2-2
I am used to use "set host A" to connect other system but I feel the response becomes more and more slow.
So I have a test with telnet and "set host"
Using Set host to connect to each system
the order is A->B->C->B->A
Using telnet to connect to each system
the order is A->B->C->B->A
Using "Set host" to connect do make me feel a little delay .Could anyone tell me why??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 06:43 PM
тАО09-09-2004 06:43 PM
Re: telnet compare with set host confused me ??
Hi, and welcome to the forum.
You are using two different network protocols. SET HOST uses DECnet, and Telnet is an application using TCP/IP.
Since TCP/IP only implements 4 layers of the OSI model, and DECnet all of them, I think that a SET HOST incurs a little bit more overhead than a Telnet connection, hence you can "feel" that a Telnet connection is a little bit faster than a SET HOST.
You could also experiment with a SET HOST/LAT, if the LAT protocol is enabled on your systems. LAT is also pretty light-weight.
Hope this helps,
Kris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 07:21 PM
тАО09-09-2004 07:21 PM
Re: telnet compare with set host confused me ??
telnet use telnet protocol over tcp/ip transport; set host use cterm over decnet.
You have not posted what decnet version you are using (decnet IV or decnet V).
I'm agree with Kris (if you are using decnet V).
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:02 PM
тАО09-09-2004 08:02 PM
Re: telnet compare with set host confused me ??
$ SET HOST node.domain
$ SET host a.b.c.d
This will allow you to run native DECnet applications transparently via a TCP/IP only network.
DECnet (e.g. SET HOST) might therefore try different transports depending on name resolution setup, so the initial connect may be more complicated and therefore taking more time.
When do you experience the 'delay' ? Initial connection until receiving Username: prompt. Or when logged in and hitting characters and having to wait for the 'echo' ? (note that SET HOST does local echoing !).
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:03 PM
тАО09-09-2004 08:03 PM
Re: telnet compare with set host confused me ??
But I still get confused.
LAT is the protocol over DECnet.
Following URL shows that protocol is on the Application Layer
http://www.protocols.com/pbook/decnet.htm#LAT
Page5-1 in the book "TCP/IP Networking on OpenVMS Systems" also indicate "set host" could invoke the telnet or rlogin
I DO have a test for Using DCL command "set host/telnet A" to invoke TELNET.The result is indeed the same as TELNET.
But using "set host" without any qualifier really make me feel a little delay.
The question is why using "set host/lat" will make the response time faster than "set host", I think both of them using the protocol over Decnet , right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:36 PM
тАО09-09-2004 08:36 PM
Re: telnet compare with set host confused me ??
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:45 PM
тАО09-09-2004 08:45 PM
Re: telnet compare with set host confused me ??
In the link you posted LAT and some other protocols (LAVC,MOP...) are listed as DECnet protocols. This is not realy true. If you look at the picture at the top of the page you see that LAT (and other mentioned before) have only the physical layer in common. The physical layer means cabling and devices (ethernet I supose in yours case, but can be a telephone line or something else).
So LAT is a separate protocol which uses the same physical layer as DECnet and TCP/IP.
Regarding set host. In OpenVMS you create a command with Command Language Definition (CLD), all the DCL commands use this mechanism. In CLD you define that a command runs a program, but you can also define that if a specified qualifier (or parameter) is present this command runs another program. Set host define that the program is sys$system:rtpad.exe which is the DECnet "telnet". When you add the /lat qualifier it runs sys$system:ltpad.exe which is the LAT version. If you add /telnet qualifier the program is sys$system:tcpip$telnet.exe which is the same as with the command telnet.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 08:49 PM - last edited on тАО09-16-2024 02:12 AM by support_s
тАО09-09-2004 08:49 PM - last edited on тАО09-16-2024 02:12 AM by support_s
Re: telnet compare with set host confused me ??
if you do
$ ana/sys
sh lan
you will see, among other things, lines such as the following
EWA13 81642A80 Eth 60-04 LAT 0015 STRTN,UNIQ,STRTD
EWA5 815AEF40 Eth 60-03 DECNET 0017 STRTN,LEN,UNIQ,STRTD
and at
http://www.iana.org/assignments/ethernet-numbers
you will find
24579 6003 - - DEC DECNET Phase IV Route[XEROX]
24580 6004 - - DEC LAT [XEROX]
By the way, I like a lot LAT. It is the first protocol to "give up" when network problems come, so I know it quickly
- Tags:
- drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 09:18 PM
тАО09-09-2004 09:18 PM
Re: telnet compare with set host confused me ??
Without any qualifier, use CTERM (over decnet); you use /LAT for LAT transport that's indipendent by decnet; /TELNET that's the same of TELNET command; /DTE to access directly to a device (for exampe to TTA0: serial port); /RLOGIN to call remote shell; /TN3270 to open a 3270 terminal on IBM host.
See HELP SET HOST for details.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 09:33 PM
тАО09-09-2004 09:33 PM
Re: telnet compare with set host confused me ??
There might be a message in the operator.log file.
There might be a routing problem in decnet. We had and have a routing problem that all traffic went via a 10 Mbit line. And since the network team only knows IP, IP will be managed better than decnet. Or decnet uses more hops to reach the destination or ...
In any case, TCP is faster than decnet.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 10:13 PM
тАО09-09-2004 10:13 PM
Re: telnet compare with set host confused me ??
If your network card is badly configured, decnet may perform "strange" too (10/100/duplex).
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2004 10:16 PM
тАО09-09-2004 10:16 PM
Re: telnet compare with set host confused me ??
$ telnet node
just do
$ def tcpip$bind_res_options "debug"
funny to see all the dialog !
and of course, a traceroute
$ @sys$startup:tcpip$define_commands
$ traceroute node
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2004 12:16 AM
тАО09-10-2004 12:16 AM
Re: telnet compare with set host confused me ??
for Decnet IV may delay factor;
$ MC NCP
NCP>SH EXEC CHAR
....
Delay factor = 80
....
You could modify delay factor
$ MC NCP SET EXEC DELAY FACTOR nn
where nn may any value form 24 to 80; with 24 Decnet is more aggressive.
If value set works fine you can store in permanet storage
$ MC NCP DEF EXEC DELAY FACTOR nn
Delay factor is decnet latency to retrasmission.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2004 12:18 AM
тАО09-10-2004 12:18 AM
Re: telnet compare with set host confused me ??
http://h71000.www7.hp.com/doc/72final/6499/6499PRO.HTML
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2004 01:55 AM
тАО09-10-2004 01:55 AM
Re: telnet compare with set host confused me ??
it is really week-end time
:-)