- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Changing DECNET Node ID
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-09-2005 04:05 AM
06-09-2005 04:05 AM
If I look via NCL the new address is there. If I access the machine from another VMS server it works. But... if I do a "$ show net" command it shows the old decnet address. I have no idea where it is getting the old address or how to change it.
Any help would be appreciated.
Bobby
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 07:21 AM
06-09-2005 07:21 AM
Re: Changing DECNET Node ID
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2005 09:05 PM
06-09-2005 09:05 PM
Re: Changing DECNET Node ID
For me, the best option to change or define DECnet addres on DECNET phase V is:
Include node on data file using DECNET_REGISTER and after modify addres of router editing the file NET$ROUTING_STARTUP.NCL, modifying the routing phase IV address.
Good luck
Saludos.
Daniel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2005 05:07 AM
06-12-2005 05:07 AM
Re: Changing DECNET Node ID
Everything works fine now and the system is recognized with the new address by both itself and all other nodes. As far as I can tell, only "show net" gives the old address but I sure would like to know where it is getting it.
Thanks again,
Bobby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2005 06:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 01:12 AM
06-13-2005 01:12 AM
Re: Changing DECNET Node ID
Correct syntax for fix:
$ SET NET/ADDRESS=xx.yyy/UPDATE DECNET
Bobby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 02:02 AM
06-13-2005 02:02 AM
Re: Changing DECNET Node ID
nice solution.
This also shows that 'just try to reboot' would also have worked, but tells us, that there is also a 'VMS-way' to solve this ;-)
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 08:17 AM
06-13-2005 08:17 AM
Re: Changing DECNET Node ID
I looked at sys$net_services_decnet.com and found that the DECNet address was being reverse-calculated from the system id paramenter (scssystemid). After searching some more I found that this parameter is statically defined in the MODPARAMS.DAT file. This parameter, scssystemid, is calculated using the xx.yyy DECNet address as (xx * 1024 + yyy)--e.g., 10.100 translates to a scssystemid = 10340.
I recalculated the new scssystemid from the new DECNet address and put it in MODPARAMS.DAT followed by AUTOGEN with reboot. That fixed it. The system now boots with the correct data. Crazy at it seems to me...
Bobby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 08:31 PM
06-13-2005 08:31 PM
Re: Changing DECNET Node ID
Purely Personal Opinion