Skip to Main Content
IBM Z Hardware and Operating Systems Ideas Portal


This is the public portal for all IBM Z Hardware and Operating System related offerings. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Not under consideration
Workspace z/OS
Created by Guest
Created on Jan 9, 2023

Make MODDVIPA available via a console command

It was recommended recently that we use MODDVIPA to ensure that an IP address remains with the stack.

//CDVIPA EXEC PGM=MODDVIPA,PARM='-c XXX.XX.XXX.XXX'

//SYSOUT DD SYSOUT=*

- At the end of the proc, add:

//DDVIPA EXEC PGM=MODDVIPA,PARM='-d XXX.XX.XXX.XXX',COND=EVEN

//SYSOUT DD SYSOUT=*


It's been some years since we experimented with it and at the time it was available only in batch. There were also issues deleting the DVIPA at the end of the job/proc so we were not able to implement it.


Since we now use automation to start and stop tasks via zOS console commands it would be nice and also consistent if there were a TCPIP console command to create and delete a DVIPA.


Idea priority Low
  • Guest
    Reply
    |
    Feb 16, 2023
    After reviewing your request, it is being rejected because we have determined that this is not something likely to be implemented. For what you want to do (automation to create/delete dynamic VIPAs via the z/OS console), it can be accomplished today using existing functions. To do this, you would create two new procedures, one to create the dynamic VIPA via the MODDVIPA utility:
    //TCPDVC EXEC PGM=MODDVIPA,REGION=0K,TIME=1440,PARM='POSIX(ON) ALL31(ON) -c dynamic-vipa-address'
    and one to delete the dynamic VIPA via the MODDVIPA utility:
    //TCPDVD EXEC PGM=MODDVIPA,REGION=0K,TIME=1440,PARM='POSIX(ON) ALL31(ON) -d dynamic-vipa-address'
    Your automation would then start the TCPDVC procedure to create the dynamic VIPA and then start your job that needs to use that dynamic VIPA. When stopping the job, your automation would first stop the job and then start the TCPDVD procedure to delete the dynamic VIPA.