Network Connectivity Policy
A Network Connectivity Policy configures DNS server settings for the Cisco IMC management interface on UCS servers, supporting static IPv4/IPv6 DNS servers, DHCP-sourced DNS, and Dynamic DNS registration.
Location in Intersight GUI:
Policies » Network Connectivity
Diagram
Section titled “Diagram”Classes
Section titled “Classes”policies (compute.intersight.organizations)
Section titled “policies (compute.intersight.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| network_connectivity | List | [network_connectivity] | No |
network_connectivity (compute.intersight.organizations.policies)
Section titled “network_connectivity (compute.intersight.organizations.policies)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[a-zA-Z0-9_.:-]{1,64}$ | Yes | |
| description | String | No | ||
| managed | Boolean | true, false | No | true |
| tags | List | [tags] | No | |
| preferred_ipv4_dns | String | No | ||
| alternate_ipv4_dns | String | No | ||
| ipv4_dns_from_dhcp | Boolean | true, false | No | false |
| ipv6 | Boolean | true, false | No | false |
| preferred_ipv6_dns | String | No | ||
| alternate_ipv6_dns | String | No | ||
| ipv6_dns_from_dhcp | Boolean | true, false | No | false |
| dynamic_dns | Boolean | true, false | No | false |
| dynamic_dns_domain | String | No |
tags (compute.intersight.organizations.policies.network_connectivity)
Section titled “tags (compute.intersight.organizations.policies.network_connectivity)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| key | String | Yes | ||
| value | String | Yes |
Examples
Section titled “Examples”Example-1: Configure static IPv4 DNS servers with Dynamic DNS enabled, and apply environment tags.
compute: intersight: organizations: - name: MyOrg policies: network_connectivity: - name: MyNetworkConnPolicy preferred_ipv4_dns: 8.8.8.8 alternate_ipv4_dns: 8.8.4.4 dynamic_dns: true dynamic_dns_domain: mgmt.example.com tags: - key: env value: prodExample-2: Retrieve IPv4 DNS servers from DHCP instead of configuring them statically.
compute: intersight: organizations: - name: MyOrg policies: network_connectivity: - name: MyNetworkConnDhcp ipv4_dns_from_dhcp: trueExample-3: Configure both IPv4 and IPv6 DNS servers for dual-stack management networks.
compute: intersight: organizations: - name: MyOrg policies: network_connectivity: - name: MyNetworkConnDualStack preferred_ipv4_dns: 192.168.1.53 alternate_ipv4_dns: 192.168.1.54 ipv6: true preferred_ipv6_dns: "2001:db8::53" alternate_ipv6_dns: "2001:db8::54"