使用PowerShell V4创建和管理DHCP作用域

时间:2020-01-09 10:46:23  来源:igfitidea点击:

说明

PowerShell是用于编写服务器角色配置脚本的有用工具。脚本中的自动化继承意味着我们可以在几分钟内使用它来快速管理多台服务器,并且可以从桌面远程进行。当我们拥有大型环境时,这很棒

本教程将指导我们完成一些使用PowerShell可以完成的管理任务。

创建范围

Cmdlet和语法

用于在Windows Server 2012 R2中创建新的DHCP作用域的cmdlet是Add-DhcpServerv4Scope。它具有以下语法。

Add-DhcpServerv4Scope [-StartRange]  [-EndRange]  [-SubnetMask]  [-Name]  [-ActivatePolicies  ] [-AsJob] [-CimSession <CimSession[]> ] [-ComputerName  ] [-Delay  ] [-Description  ] [-LeaseDuration  ] [-MaxBootpClients  ] [-NapEnable] [-NapProfile  ] [-PassThru] [-State  ] [-SuperscopeName  ] [-ThrottleLimit  ] [-Type  ] [-Confirm] [-WhatIf] [ ]

创建范围的示例

  • 要创建一个名为" Toronto Corporate"的范围,其IP范围为172.30.0.1-254,租约期限为8天,我们将在PowerShell中执行以下操作。
Add-DhcpServerv4Scope -StartRange 172.30.0.1 -EndRange 172.30.0.254 -SubnetMask 255.255.255.0 -Name "Toronto Corporate" -LeaseDuration 8:00:00
  • 要执行与上面所示相同的作用域,但要从目标为dhcp01的DHCP服务器的远程计算机执行以下操作。
Add-DhcpServerv4Scope -Computer dhcp01 -StartRange 172.30.0.1 -EndRange 172.30.0.254 -SubnetMask 255.255.255.0 -Name "Toronto Corporate" -LeaseDuration 8:00:00