- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise
- >
- How to assign a user input IP address to VM during...
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
04-15-2023 02:49 PM
04-15-2023 02:49 PM
How to assign a user input IP address to VM during provisioning
Hi Team,
We have a requirement to create a catalog where user will give the Hostname and IP address of a server. I am able to configure the hostname from the user input but I am not getting a option for IP address. Request you to suggest how we can add a user input IP address to server during server provision from Morpheus.
Thanks
Rakesh Gupta
- Tags:
- automation
- instances

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 01:52 AM
04-17-2023 01:52 AM
Re: How to assign a user input IP address to VM during provisioning
Hi @RakaBhai1 you need to enable “Allow IP Override” checkbox on edit network settings
Create the catalog using the configuration setting and when you select the network make sure you select the static dropdown and a box to enter IP address will be shown. Use an input to replace the variable with the static IP address in the config.
Thanks,
Anish.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 06:42 AM
01-02-2024 06:42 AM
Re: How to assign a user input IP address to VM during provisioning
Just tested in my labs and it works. Below is the networkInterfaces array in my catalog config
"networkInterfaces": [
{
"primaryInterface": true,
"network": {
"id": "network-4",
"hasPool": false,
"idName": "VLAN0002 - Internal Server 2"
},
"ipMode": "static",
"showNetworkPoolLabel": false,
"showNetworkDhcpLabel": false,
"ipAddress": "<%= customOptions.ipAddress %>",
"ipAddressName": "",
"displayName": ""
}
],

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 02:52 PM
12-12-2023 02:52 PM
Re: How to assign a user input IP address to VM during provisioning
@aabraham Can you provide the sample code of this request. I am also having the same issue

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2023 02:20 AM
04-19-2023 02:20 AM
Re: How to assign a user input IP address to VM during provisioning

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2023 03:58 AM
04-27-2023 03:58 AM
Re: How to assign a user input IP address to VM during provisioning
Hi Anish,
As suggested , I have implemented the same but the machine taking IP from DHCP still. Also the VM get stuck on network wait phase and failed. Any suggestions.
Thanks