Powershell 4.0 미만에서의 DHCP Cmdlet
[Explanation]
기본적으로 DHCP 서비스를 운영하면 Powershell 4.0 버전 이상에서는 DHCP 관련 명령어가 적용되어 적용 및 확인하기 수월하다. 하지만 4.0 미만의 버전에서는 Powershell을 상위 버전으로 업데이트 하지 않으면 해당 명령어를 사용할 수 없는데, 이 경우 우회적으로 사용하는 방법이 있어서 공유하려고 합니다.
일전에 관련해서 기존에 포스팅을 하는 적이 있는데, 그 내용을 기반으로 실제 어떻게 사용하는지 보여드리려고 합니다.
우선 기존 포스팅에 올린 Cmdlet을 'Microsoft.DHCP.PowerShell.Admin.psm1'
파일로 저장을 하고 해당 ps1 파일을 Powershell에서 import 하여 명령어를 실행하면 됩니다.
PS C:\Windows\system32> import-module C:\Users\User\Desktop\Microsoft.DHCP.PowerShell.Admin.psm1
PS C:\Windows\system32> Get-DHCPScope -Scope 10.0.0.0 -Server 192.168.0.1
Address : 10.0.0.0
SubnetMask : 255.255.255.128
Name : N
Description : Test_DHCP
State : Active
Server : 192.168.0.1
IPRanges : {10.0.0.1 - 10.0.0.126}
ExclusionRanges : {10.0.0.1 - 10.0.0.126}
Reservations :
Lease : 691200
Options : {Router, DNS Domain Name, DNS Servers}
DNSConfiguration : Inherited from Parent
♔♔♔♔♔♔♔♔♔♔
댓글이나 의견은 언제든지 환영합니다.
Your Comments are Always Welcome!
0 comments:
Post a Comment