Add-IpamDiscoveryDomain

Add-IpamDiscoveryDomain

Adds a new Active Directory domain to the list of domains in which IPAM discovers infrastructure servers.

構文

Parameter Set: Add0
Add-IpamDiscoveryDomain [-Name] <String> [-AsJob] [-CimSession <CimSession[]> ] [-DiscoverDc <Boolean> ] [-DiscoverDhcp <Boolean> ] [-DiscoverDns <Boolean> ] [-PassThru] [-ThrottleLimit <Int32> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Add-IpamDiscoveryDomain cmdlet adds an Active Directory discovery domain for an IP Address Management (IPAM) server. A discovery domain is a domain that IPAM searches to find infrastructure servers. An IPAM server uses the list of discovery domains to determine what type of servers to add. By default, IPAM discovers all domain controllers, Dynamic Host Configuration Protocol (DHCP) servers, and Domain Name System (DNS) servers. You can specify the type of servers discovered per domain while you are adding the domain, or you can edit the same by using the Set-IpamDiscoveryDomain cmdlet.

パラメーター

-AsJob

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-CimSession<CimSession[]>

リモート セッションまたはリモート コンピューターでコマンドレットを実行します。New-CimSession コマンドレットや Get-CimSession コマンドレットの出力など、コンピューター名またはセッション オブジェクトを入力します。既定値は、ローカル コンピューターで実行中の現在のセッションです。

エイリアス

Session

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-DiscoverDc<Boolean>

Indicates whether IPAM discovers all domain controllers in a specified domain. By default, the value is True.

エイリアス

なし

必須?

false

位置は?

named

既定値

true

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-DiscoverDhcp<Boolean>

Indicates whether IPAM discovers all DHCP servers in a specified domain. By default, the value is True.

エイリアス

なし

必須?

false

位置は?

named

既定値

true

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-DiscoverDns<Boolean>

Indicates whether IPAM discovers all DNS servers in a specified domain. By default, the value is True.

エイリアス

なし

必須?

false

位置は?

named

既定値

true

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Name<String>

Specifies the fully qualified domain name (FQDN) of the Active Directory domain that will be added to the list of domains in which IPAM will discover infrastructure servers.

エイリアス

なし

必須?

true

位置は?

2

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-PassThru

作業中の項目を表すオブジェクトを返します。既定では、このコマンドレットによる出力はありません。

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-ThrottleLimit<Int32>

このコマンドレットを実行するために確立できる最大同時操作数を指定します。このパラメーターを省略するか、値として 0 を入力した場合、Windows PowerShell® では、コンピューターで実行している CIM コマンドレットの数に基づいて、コマンドレットに対する最適なスロットル制限を計算します。スロットル制限は現在のコマンドレットのみに適用され、セッションまたはコンピューターには適用されません。

エイリアス

なし

必須?

false

位置は?

named

既定値

なし

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • IpamDiscoveryDomain

    Represents an Active Directory domain in which IPAM will search for infrastructure servers.

Example 1: Add domains to the IPAM discovery domain

This command configures IPAM to discover DHCP and DNS servers in the domain named child01.contoso.com. Because the default value of DiscoverDhcp, DiscoverDns, and DiscoverDc is True, the command sets DiscoverDc to False to direct IPAM not to discover domain controllers in the domain.

PS C:\> Add-IpamDiscoveryDomain -Name child01.contoso.com -DiscoverDc $False -PassThru

Example 2: Add domain controllers, DHCP, and DNS servers to a discovery domain

This command configures IPAM to discover domain controllers, DHCP servers, and DNS servers in the child01.contoso.com domain.

PS C:\> Add-IpamDiscoveryDomain -Name child01.contoso.com -PassThru

関連トピック

Get-IpamDiscoveryDomain

Remove-IpamDiscoveryDomain

Set-IpamDiscoveryDomain