- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Disabling DECnet Plus from starting.
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
01-22-2004 05:27 AM
01-22-2004 05:27 AM
We would like to disable this from starting as it is another layered product we do not wish to use as we have IP.
I have looked in SYS$MANAGER:SYSTARTUP_VMS.COM but can only see the option to disable DECnet from starting, not DECnet Plus.
Would SYS$NODE logical be defined as it is not currently!
A closer investigation into sys$manager:startup.com I found:
$p1 = f$extract(stdrv$i+1,f$locate(",",f$extract(stdrv$i+1,999,stdrv$requests)),stdrv$requests)
$if P1.EQS."NETWORK"
$then
$if f$search("SYS$STARTUP:NET$STARTUP.COM").NES."" then -
$ @SYS$STARTUP:NET$STARTUP "''p1'" "''p2'" "''p3'" "''p4'" "''p5'" "''p6'" "''p7'" "''p8'"
$exit
So we have renamed NET$STARTUP.COM to NET$STARTUP1.COM.
This seem to have stopped DECnet Plus from starting up, althought a SHOW NET still shows DECnet. I feel it is not the correct way to do it.
A closer look in the DECnet-Plus for OpenVMS
Network Management manual says that we could define NET$IGNORE_DECNET TRUE in SYS$MANAGER:NET$LOGICALS.COM
Would this be the better/cleaner/official way of disabling DECnet plus to get a cleaner bowl?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 05:56 AM
01-22-2004 05:56 AM
Re: Disabling DECnet Plus from starting.
See http://h71000.www7.hp.com/doc/73final/6499/6499pro_008.html#index_x_276
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 05:57 AM
01-22-2004 05:57 AM
Re: Disabling DECnet Plus from starting.
here there is the documentation page for your interest http://h71000.www7.hp.com/doc/73final/6499/6499pro_008.html#log_names_start
It seem you have:
$ DEFINE/SYSTEM NET$IGNORE_DECNET TRUE
before command NET$STARTUP in SYSTARTUP_VMS.COM.
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 06:56 AM
01-22-2004 06:56 AM
Re: Disabling DECnet Plus from starting.
Seems to have had exactly the same effect as renaming net$startup.com to net$startup1.com (As expected I suppose).
Although DECnet still shows up on a $SHOW NET.
Cheers!
Rob.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 12:32 PM
01-22-2004 12:32 PM
Re: Disabling DECnet Plus from starting.
The SHOW NET command reflects what's been defined with the SET NETWORK command. It's a kind of data base stored in logical names which are used by START/NETWORK, STOP/NETWORK, SHOW NETWORK etc...
(See HELP SET NETWORK and SHOW LOGICAL SYS$NET_SERVICE*. This is an "open" mechanism which you're free to find a use for ;-)
The command procedure SYS$STARTUP:SYS$NET_SERVICES.COM just looks for files called SYS$STARTUP:SYS$NET_SERVICES_*.COM and executes any that are found. You have a procedure "_DECNET.COM" which defines the DECnet network. Since it doesn't have any code to check NET$IGNORE_DECNET, it will be executed. This is a shortcoming, which I'll feed back to the DECnet folk.
In the mean time, you can use SET NETWORK/REMOVE to delete the DECnet entry from the data base.
Cleaner, but unsupported, you could RENAME the file, or add the line:
$ IF F$TRNLNM("NET$IGNORE_DECNET").NES."" THEN EXIT
at the top of the procedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 07:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 08:14 PM
01-22-2004 08:14 PM
Re: Disabling DECnet Plus from starting.
I would define the logical and add the suggested line in the net services command file to check it.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 09:51 PM
01-22-2004 09:51 PM
Re: Disabling DECnet Plus from starting.
Note that lots of programs use sys$node so it might be best to define it by hand.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 11:06 PM
01-22-2004 11:06 PM
Re: Disabling DECnet Plus from starting.
$ IF F$TRNLNM("NET$IGNORE_DECNET") .NES. "" THEN EXIT
To SYS$COMMON:[SYS$STARTUP]SYS$NET_SERVICES_DECNET.COM
However we do a
DEFINE/SYSTEM IGNORE_DECNET TRUE
in sys$manager:net$logicals.com
Which I assume gets called after
SYS$COMMON:[SYS$STARTUP]SYS$NET_SERVICES_DECNET.COM
is run.
By putting $EXIT at the top of
SYS$COMMON:[SYS$STARTUP]SYS$NET_SERVICES_DECNET.COM
We do not get any DECnet details on SHOW NETWORK.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2004 11:22 PM
01-22-2004 11:22 PM
Re: Disabling DECnet Plus from starting.
SYS$NODE is indeed gone too.
But I find a difference in time logicals. SYS$TIMEZONE_NAME, SYS$TIMEZONE_RULE and SYS$TIMEZONE_DAYLIGHT_SAVING are gone and SYS$TIMEZONE_DIFFERENTIAL is 7200 instead of 3600.
Is this normal ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2004 12:02 AM
01-23-2004 12:02 AM
Re: Disabling DECnet Plus from starting.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2004 12:09 AM
01-23-2004 12:09 AM
Re: Disabling DECnet Plus from starting.
Could it be that there is a bad config active when dtss is not used ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2004 12:29 AM
01-23-2004 12:29 AM
Re: Disabling DECnet Plus from starting.
Prevent DTSS from starting:
In SYS$STARTUP:NET$LOGICALS.COM you will have to define NET$DISABLE_DTSS as TRUE
(in the SYSTEM table).
That will prevent DTSS starting.
Make sure to use NET$logicals, because otherwise you will serve your mustard after the meal is eaten.
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2004 02:12 AM
01-23-2004 02:12 AM
Re: Disabling DECnet Plus from starting.
If you do
@SYS$COMMON:[SYSMGR]UTC$time_setup.com show
what does it show
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 12:17 AM
01-24-2004 12:17 AM
Re: Disabling DECnet Plus from starting.
>
>We would like to disable this from starting as >it is another layered product we do not wish >to use as we have IP.
I've been reading this thread with some interest - allow me to ask a naive question:
What forces you to use DECnet? Is there something in your system or application that is actively using DECnet? If so, is there any way to stop the system/app from using it?
Put another way, if you don't like DECnet, don't use it - I don't think you need to. Trying to get rid of DECnet may cause you more problems than just leaving it alone.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 03:03 AM
01-25-2004 03:03 AM
Re: Disabling DECnet Plus from starting.
meaning: de-install (PROD REMOVE) ??
Well, you WILL run into problems. I tried that, and after that:
- all kinds of cluster trouble
- Even TCPIP didn't work anymore
Solution: Remove ALL .NCP and .NCL procedures and ree-installed DECNet.
So: DON't de-install. Removal of above files
may help to prevent DECNet actually starting.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 12:35 PM
01-28-2004 12:35 PM
Re: Disabling DECnet Plus from starting.
Keep your eyes on the release notes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 08:15 PM
01-28-2004 08:15 PM
Re: Disabling DECnet Plus from starting.
which issue has been formally reported?
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 03:14 AM
01-29-2004 03:14 AM
Re: Disabling DECnet Plus from starting.
1) no copies in the format node::file unless the badly working /ftp
2) certain applications may no longer work. You must test everything.
3) no task to task (if used by applications)
4) if you use TCP : also check all tcp drp settings and test them (keepalive, retransmit timeout, TIME_WAIT sockets, etc)
5) etc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 03:46 PM
01-11-2005 03:46 PM
Re: Disabling DECnet Plus from starting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2005 09:20 AM
11-27-2005 09:20 AM
Re: Disabling DECnet Plus from starting.
As of OpenVMS V8.2:
$ DEFINE NET$IGNORE_DECNET TRUE
during system startup will prevent DECnet from being registered as a network service. Therefore, DECnet won't be displayed in SHOW NETWORK.
If you want to register DECnet, make sure NET$IGNORE_DECNET is DEASSIGNed then
$ @SYS$STARTUP:SYS$NET_SERVICES_DECNET
$ START/NETWORK DECNET