New-AzureDns
New-AzureDns
Parameter Set: Default New-AzureDns [-Name] <String> [-IPAddress] <String> [ <CommonParameters>]
The New-AzureDNS cmdlet creates a DNS settings object for use by the New-AzureVM cmdlet. It accepts two parameters: Name and IPAddress. The Name parameter is a friendly name, not necessarily a DNS resolvable name, and the IPAddress parameter is the IP address of the DNS server.
-IPAddress<String>
Specifies the IP address of the DNS server.
Aliases | none |
Required? | true |
Position? | 2 |
Default Value | none |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
-Name<String>
Specifies a friendly name to identify the DNS server. This name is not necessarily a fully qualified domain name.
Aliases | none |
Required? | true |
Position? | 1 |
Default Value | none |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
-------------- Example 1 --------------
This command creates a new Windows Azure DNS settings object.
C:\PS>$dns1 = New-AzureDns –Name "dns1" –IPAddress "10.1.2.4"
-------------- Example 2 --------------
This command creates a new Windows Azure DNS settings object that is then used during the creation of a virtual machine with the New-AzureVM cmdlet.
C:\PS>$dns1 = New-AzureDns –Name "dns1" –IPAddress "10.1.2.4" C:\PS>New-AzureVM –ServiceName $MyService –AffinityGroup $MyAG –VnetName $VNet1 –DnsSettings $dns1 –VMs $MyVMconfig
Related topics