Загрузка данных


PS C:\Windows\system32> $Server = "RUKLGDC01.pcmarus.loc"

Write-Host "`n=== СВЕДЕНИЯ О СЕРВЕРЕ ===" -ForegroundColor Cyan

try {
    Get-WmiObject Win32_OperatingSystem `
        -ComputerName $Server `
        -ErrorAction Stop |
    Select-Object CSName,Caption,Version,LastBootUpTime |
    Format-List
}
catch {
    Write-Host "Не удалось получить сведения о сервере: $($_.Exception.Message)" -ForegroundColor Red
}

Write-Host "`n=== СЛУЖБА DHCP ===" -ForegroundColor Cyan

try {
    $DhcpService = Get-WmiObject Win32_Service `
        -ComputerName $Server `
        -Filter "Name='DHCPServer'" `
        -ErrorAction Stop

    if ($null -eq $DhcpService) {
        Write-Host "Служба DHCPServer на сервере не найдена" -ForegroundColor Yellow
    }
    else {
        $DhcpService |
        Select-Object Name,DisplayName,State,StartMode,ProcessId,ExitCode |
        Format-List
    }
}
catch {
    Write-Host "Не удалось проверить службу: $($_.Exception.Message)" -ForegroundColor Red
}

Write-Host "`n=== ДОСТУП К АДМИНИСТРАТИВНОЙ ШАРЕ ===" -ForegroundColor Cyan

[pscustomobject]@{
    Server       = $Server
    AdminShare   = Test-Path "\\$Server\C$"
    DHCPLogFolder = Test-Path "\\$Server\C$\Windows\System32\dhcp"
} | Format-List

=== СВЕДЕНИЯ О СЕРВЕРЕ ===


CSName         : RUKLGDC01
Caption        : Microsoft Windows Server 2022 Datacenter
Version        : 10.0.20348
LastBootUpTime : 20260303184732.501729+180




=== СЛУЖБА DHCP ===


Name        : DHCPServer
DisplayName : DHCP Server
State       : Running
StartMode   : Auto
ProcessId   : 3756
ExitCode    : 0




=== ДОСТУП К АДМИНИСТРАТИВНОЙ ШАРЕ ===


Server        : RUKLGDC01.pcmarus.loc
AdminShare    : True
DHCPLogFolder : True




PS C:\Windows\system32> $Server = "RUKLGDC01.pcmarus.loc"
$Stamp  = Get-Date -Format "yyyyMMdd_HHmmss"

$RemoteScriptLocal = "C:\Windows\Temp\DHCP_Audit_$Stamp.ps1"
$RemoteOutLocal    = "C:\Windows\Temp\DHCP_Audit_$Stamp.txt"
$RemoteDoneLocal   = "C:\Windows\Temp\DHCP_Audit_$Stamp.done"

$RemoteScriptUNC = "\\$Server\C$\Windows\Temp\DHCP_Audit_$Stamp.ps1"
$RemoteOutUNC    = "\\$Server\C$\Windows\Temp\DHCP_Audit_$Stamp.txt"
$RemoteDoneUNC   = "\\$Server\C$\Windows\Temp\DHCP_Audit_$Stamp.done"

$ScriptBody = @'
$ErrorActionPreference = "Continue"

& {
    Write-Output "============================================================"
    Write-Output " DHCP SERVER AUDIT"
    Write-Output "============================================================"
    Write-Output "Server: $env:COMPUTERNAME"
    Write-Output "Date:   $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')"

    Write-Output "`n=== DHCP MODULE ==="
    Import-Module DhcpServer -ErrorAction Stop
    Get-Module DhcpServer |
        Select-Object Name,Version,Path |
        Format-List

    Write-Output "`n=== DHCP SERVICE ==="
    Get-Service DHCPServer |
        Select-Object Name,Status,StartType |
        Format-List

    Write-Output "`n=== DHCP BINDINGS ==="
    Get-DhcpServerv4Binding |
        Format-Table InterfaceAlias,IPAddress,BindingState -AutoSize

    Write-Output "`n=== DHCP SCOPES ==="
    $Scopes = Get-DhcpServerv4Scope

    $Scopes |
        Format-Table ScopeId,Name,State,StartRange,EndRange,SubnetMask,LeaseDuration -AutoSize

    Write-Output "`n=== SCOPE STATISTICS ==="
    $Statistics = foreach ($Scope in $Scopes) {
        Get-DhcpServerv4ScopeStatistics -ScopeId $Scope.ScopeId
    }

    $Statistics |
        Format-Table ScopeId,PercentageInUse,InUse,Free,Reserved,Pending -AutoSize

    Write-Output "`n=== SCOPES WITH UTILIZATION 85% OR MORE ==="
    $HighUsage = $Statistics |
        Where-Object {
            $_.PercentageInUse -ge 85
        }

    if ($HighUsage) {
        $HighUsage |
            Format-Table ScopeId,PercentageInUse,InUse,Free,Reserved,Pending -AutoSize
    }
    else {
        Write-Output "Scopes with utilization >= 85% were not found."
    }

    Write-Output "`n=== EXCLUSION RANGES ==="
    foreach ($Scope in $Scopes) {
        Write-Output "`nScope: $($Scope.ScopeId) / $($Scope.Name)"

        $Exclusions = Get-DhcpServerv4ExclusionRange `
            -ScopeId $Scope.ScopeId `
            -ErrorAction SilentlyContinue

        if ($Exclusions) {
            $Exclusions |
                Format-Table ScopeId,StartRange,EndRange -AutoSize
        }
        else {
            Write-Output "No exclusions configured."
        }
    }

    Write-Output "`n=== DHCP OPTIONS PER SCOPE ==="
    foreach ($Scope in $Scopes) {
        Write-Output "`nScope: $($Scope.ScopeId) / $($Scope.Name)"

        Get-DhcpServerv4OptionValue `
            -ScopeId $Scope.ScopeId `
            -ErrorAction SilentlyContinue |
        Format-Table OptionId,Name,Value -AutoSize
    }

    Write-Output "`n=== SERVER-LEVEL DHCP OPTIONS ==="
    Get-DhcpServerv4OptionValue -ErrorAction SilentlyContinue |
        Format-Table OptionId,Name,Value -AutoSize

    Write-Output "`n=== DHCP FAILOVER ==="
    $Failover = Get-DhcpServerv4Failover -ErrorAction SilentlyContinue

    if ($Failover) {
        $Failover |
            Format-List Name,PartnerServer,Mode,State,ServerRole,ScopeId
    }
    else {
        Write-Output "DHCP Failover is not configured."
    }

    Write-Output "`n=== DHCP SERVER SETTINGS ==="
    Get-DhcpServerv4Setting -ErrorAction SilentlyContinue |
        Format-List *

    Write-Output "`n=== DHCP AUDIT SETTINGS ==="
    Get-DhcpServerAuditLog -ErrorAction SilentlyContinue |
        Format-List *

    Write-Output "`n=== DHCP DATABASE SETTINGS ==="
    Get-DhcpServerDatabase -ErrorAction SilentlyContinue |
        Format-List *

    Write-Output "`n=== DHCP AUTHORIZATION IN ACTIVE DIRECTORY ==="
    Get-DhcpServerInDC -ErrorAction SilentlyContinue |
        Format-Table DnsName,IPAddress -AutoSize

    Write-Output "`n=== DISK C: ==="
    Get-WmiObject Win32_LogicalDisk -Filter "DeviceID='C:'" |
        Select-Object DeviceID,
            @{Name="SizeGB";Expression={[math]::Round($_.Size / 1GB,2)}},
            @{Name="FreeGB";Expression={[math]::Round($_.FreeSpace / 1GB,2)}},
            @{Name="FreePercent";Expression={[math]::Round(($_.FreeSpace / $_.Size) * 100,2)}} |
        Format-Table -AutoSize

    Write-Output "`n=== DHCP ERRORS AND WARNINGS FOR LAST 3 DAYS ==="
    $StartTime = (Get-Date).AddDays(-3)

    $DhcpLogs = Get-WinEvent -ListLog "*DHCP*" -ErrorAction SilentlyContinue |
        Where-Object {
            $_.IsEnabled -and $_.RecordCount -gt 0
        }

    foreach ($Log in $DhcpLogs) {
        Write-Output "`nLog: $($Log.LogName)"

        $Events = Get-WinEvent -FilterHashtable @{
            LogName   = $Log.LogName
            StartTime = $StartTime
        } -ErrorAction SilentlyContinue |
        Where-Object {
            $_.Level -in 1,2,3
        } |
        Select-Object -First 50 TimeCreated,Id,LevelDisplayName,Message

        if ($Events) {
            $Events | Format-List
        }
        else {
            Write-Output "No errors or warnings found."
        }
    }

    Write-Output "`n=== LATEST DHCP AUDIT LOG ==="
    $LatestAuditLog = Get-ChildItem `
        "C:\Windows\System32\dhcp\DhcpSrvLog-*.log" `
        -ErrorAction SilentlyContinue |
        Sort-Object LastWriteTime -Descending |
        Select-Object -First 1

    if ($LatestAuditLog) {
        Write-Output "File: $($LatestAuditLog.FullName)"
        Write-Output "Modified: $($LatestAuditLog.LastWriteTime)"
        Get-Content $LatestAuditLog.FullName -Tail 100
    }
    else {
        Write-Output "DHCP audit log files were not found."
    }

} 2>&1 |
    Out-String -Width 400 |
    Set-Content -LiteralPath "__OUT__" -Encoding UTF8

New-Item -ItemType File -Path "__DONE__" -Force | Out-Null
'@

$ScriptBody = $ScriptBody.Replace("__OUT__", $RemoteOutLocal)
$ScriptBody = $ScriptBody.Replace("__DONE__", $RemoteDoneLocal)

try {
    Write-Host "Копирование диагностического скрипта..." -ForegroundColor Cyan

    Set-Content `
        -LiteralPath $RemoteScriptUNC `
        -Value $ScriptBody `
        -Encoding UTF8 `
        -Force

    $CommandLine = "powershell.exe -NoProfile -NonInteractive -ExecutionPolicy Bypass -File `"$RemoteScriptLocal`""

    Write-Host "Запуск диагностики на $Server..." -ForegroundColor Cyan

    $ProcessClass = [wmiclass]"\\$Server\root\cimv2:Win32_Process"
    $CreateResult = $ProcessClass.Create($CommandLine)

    if ($CreateResult.ReturnValue -ne 0) {
        throw "Не удалось запустить процесс. WMI ReturnValue: $($CreateResult.ReturnValue)"
    }

    Write-Host "Процесс запущен. PID: $($CreateResult.ProcessId)" -ForegroundColor Green

    $Deadline = (Get-Date).AddMinutes(3)

    while (
        -not (Test-Path $RemoteDoneUNC) -and
        (Get-Date) -lt $Deadline
    ) {
        Start-Sleep -Seconds 2
    }

    if (-not (Test-Path $RemoteDoneUNC)) {
        throw "Диагностика не завершилась за 3 минуты."
    }

    Write-Host "`n=== РЕЗУЛЬТАТ ДИАГНОСТИКИ ===`n" -ForegroundColor Green

    Get-Content $RemoteOutUNC
}
catch {
    Write-Host "Ошибка: $($_.Exception.Message)" -ForegroundColor Red
}
finally {
    Remove-Item $RemoteScriptUNC -Force -ErrorAction SilentlyContinue
    Remove-Item $RemoteDoneUNC   -Force -ErrorAction SilentlyContinue
    Remove-Item $RemoteOutUNC    -Force -ErrorAction SilentlyContinue
}
Копирование диагностического скрипта...
Запуск диагностики на RUKLGDC01.pcmarus.loc...
Процесс запущен. PID: 19056

=== РЕЗУЛЬТАТ ДИАГНОСТИКИ ===

============================================================
 DHCP SERVER AUDIT
============================================================
Server: RUKLGDC01
Date:   2026-07-21 19:06:11

=== DHCP MODULE ===


Name    : DhcpServer
Version : 2.0.0.0
Path    : C:\Windows\system32\WindowsPowerShell\v1.0\Modules\DhcpServer\DhcpServer.psd1




=== DHCP SERVICE ===


Name      : DHCPServer
Status    : Running
StartType : Automatic




=== DHCP BINDINGS ===

InterfaceAlias IPAddress      BindingState
-------------- ---------      ------------
Ethernet       10.182.219.201         True



=== DHCP SCOPES ===

ScopeId        Name                             State  StartRange     EndRange       SubnetMask      LeaseDuration
-------        ----                             -----  ----------     --------       ----------      -------------
10.7.128.0     KA-ToIP-VL2128                   Active 10.7.128.1     10.7.128.199   255.255.255.0   8.00:00:00   
10.7.129.0     KA-ToIP-VL2129                   Active 10.7.129.1     10.7.129.199   255.255.255.0   8.00:00:00   
10.7.130.0     KA-ToIP-VL2130                   Active 10.7.130.1     10.7.130.199   255.255.255.0   8.00:00:00   
10.7.131.0     KA-ToIP-VL2131                   Active 10.7.131.1     10.7.131.199   255.255.255.0   8.00:00:00   
10.7.132.0     KA-ToIP-VL2132                   Active 10.7.132.1     10.7.132.230   255.255.255.0   8.00:00:00   
10.7.133.0     KA-ToIP-VL2133                   Active 10.7.133.1     10.7.133.200   255.255.255.0   8.00:00:00   
10.7.134.0     KA-ToIP-VL2134                   Active 10.7.134.1     10.7.134.199   255.255.255.0   8.00:00:00   
10.7.191.0     KA-ToIP-VL2191                   Active 10.7.191.100   10.7.191.122   255.255.255.128 8.00:00:00   
10.7.191.128   KA-ToIP-VL2491                   Active 10.7.191.230   10.7.191.250   255.255.255.128 8.00:00:00   
10.139.184.128 POOL_LAN_WIRED                   Active 10.139.184.131 10.139.184.190 255.255.255.192 8.00:00:00   
10.139.184.240 WiFi_AP                          Active 10.139.184.242 10.139.184.254 255.255.255.240 8.00:00:00   
10.139.185.0   POOL_LAN_WIFI                    Active 10.139.185.2   10.139.185.126 255.255.255.128 8.00:00:00   
10.181.130.0   KA-USER-FERRAGE-IP3-VL730-LEGACY Active 10.181.130.1   10.181.130.199 255.255.255.0   7.00:00:00   
10.181.131.0   VLAN731                          Active 10.181.131.1   10.181.131.199 255.255.255.0   8.00:00:00   
10.181.132.0   KA-USER-MONTAGE-IP3-VL732-LEGACY Active 10.181.132.1   10.181.132.200 255.255.255.0   7.00:00:00   
10.181.133.0   KA-AUT-FERRAGE-IP3-VL733-LEGACY  Active 10.181.133.190 10.181.133.199 255.255.255.0   8.00:00:00   
10.181.134.0   KA-AUT-PEINTURE-IP3-VL734-LEGACY Active 10.181.134.190 10.181.134.199 255.255.255.0   8.00:00:00   
10.181.135.0   KA-AUT-MONTAGE-IP3-VL735-LEGACY  Active 10.181.135.11  10.181.135.199 255.255.255.0   8.00:00:00   
10.181.137.0   KA-USER-MONTAGE-IP3-VL737-LEGACY Active 10.181.137.1   10.181.137.200 255.255.255.0   7.00:00:00   
10.181.138.0   KA-USER-FERRAGE-IP3-VL738        Active 10.181.138.1   10.181.138.199 255.255.255.0   8.00:00:00   
10.181.139.0   KA-USER-PEINTURE-IP3-VL739       Active 10.181.139.1   10.181.139.199 255.255.255.0   8.00:00:00   
10.181.140.0   KA-USER-MONTAGE-IP3-VL740        Active 10.181.140.1   10.181.140.199 255.255.255.0   8.00:00:00   
10.182.128.0   KA-USERS-IP12-VL128              Active 10.182.128.1   10.182.128.199 255.255.255.0   2.00:00:00   
10.182.129.0   KA-USERS-IP12-VL129              Active 10.182.129.1   10.182.129.199 255.255.255.0   2.00:00:00   
10.182.130.0   KA-USERS-IP12-VL130              Active 10.182.130.1   10.182.130.202 255.255.255.0   2.00:00:00   
10.182.131.0   KA-USERS-IP12-VL131              Active 10.182.131.1   10.182.131.199 255.255.255.0   2.00:00:00   
10.182.132.0   KA-USERS-IP12-VL132              Active 10.182.132.1   10.182.132.199 255.255.255.0   2.00:00:00   
10.182.133.0   KA-USERS-IP12-VL133              Active 10.182.133.1   10.182.133.199 255.255.255.0   2.00:00:00   
10.182.134.0   KA-USERS-IP12-VL134              Active 10.182.134.1   10.182.134.211 255.255.255.0   2.00:00:00   
10.182.135.0   KA-USERS-IP12-VL135              Active 10.182.135.1   10.182.135.199 255.255.255.0   2.00:00:00   
10.182.136.0   KA-USERS-IP12-VL136              Active 10.182.136.1   10.182.136.199 255.255.255.0   2.00:00:00   
10.182.137.0   KA-USERS-IP12-VL137              Active 10.182.137.1   10.182.137.199 255.255.255.0   2.00:00:00   
10.182.138.0   KA-USERS-IP12-VL138              Active 10.182.138.1   10.182.138.213 255.255.255.0   2.00:00:00   
10.182.139.0   KA-USERS-IP12-VL139              Active 10.182.139.1   10.182.139.212 255.255.255.0   2.00:00:00   
10.182.140.0   KA-USERS-IP12-VL140              Active 10.182.140.1   10.182.140.199 255.255.255.0   2.00:00:00   
10.182.141.0   KA-USERS-IP12-VL141              Active 10.182.141.1   10.182.141.214 255.255.255.0   2.00:00:00   
10.182.142.0   KA-USERS-IP12-VL142              Active 10.182.142.1   10.182.142.199 255.255.255.0   2.00:00:00   
10.182.144.0   KA-USERS-IP12-VL144              Active 10.182.144.1   10.182.144.203 255.255.255.0   2.00:00:00   
10.182.150.0   KA-USERS-IP12-VL150              Active 10.182.150.1   10.182.150.199 255.255.255.0   06:00:00     
10.182.151.0   KA-USERS-IP12-VL151              Active 10.182.151.1   10.182.151.199 255.255.255.0   06:00:00     
10.182.152.0   KA-USERS-IP12-VL152              Active 10.182.152.1   10.182.152.199 255.255.255.0   06:00:00     
10.182.153.0   KA-USERS-IP12-VL153              Active 10.182.153.1   10.182.153.199 255.255.255.0   06:00:00     
10.182.154.0   KA-USERS-IP12-VL154-LUR          Active 10.182.154.1   10.182.154.199 255.255.255.0   06:00:00     
10.182.155.0   KA-USERS-IP12-VL155-LUR          Active 10.182.155.1   10.182.155.199 255.255.255.0   06:00:00     
10.182.218.0   VLAN948                          Active 10.182.218.1   10.182.218.200 255.255.255.0   8.00:00:00   
10.182.219.0   KA-SERVERS-IP123-VL219           Active 10.182.219.228 10.182.219.239 255.255.255.0   8.00:00:00   
192.168.1.0    WIFI_GUEST                       Active 192.168.1.2    192.168.1.254  255.255.255.0   8.00:00:00   



=== SCOPE STATISTICS ===

ScopeId        PercentageInUse InUse Free Reserved Pending
-------        --------------- ----- ---- -------- -------
10.7.128.0                  29    58  141        0       1
10.7.129.0                   0     0  199        0       0
10.7.130.0            15,57789    31  168        0       0
10.7.131.0            31,65829    63  136        0       0
10.7.132.0            23,47826    54  176        0       0
10.7.133.0                 8,5    17  183        0       0
10.7.134.0                   0     0  199        0       0
10.7.191.0            8,695652     2   21        0       0
10.7.191.128                 0     0   21        0       0
10.139.184.128        38,33333    23   37       23       0
10.139.184.240        46,15385     6    7        7       0
10.139.185.0                 0     0  125        0       0
10.181.130.0          10,05025    20  179       19       0
10.181.131.0          3,517588     7  192        0       0
10.181.132.0                14    28  172       24       0
10.181.133.0                10     1    9        0       0
10.181.134.0                 0     0   10        0       0
10.181.135.0                 0     0  189        0       0
10.181.137.0               8,5    17  183        7       0
10.181.138.0                 0     0  199        0       0
10.181.139.0                 0     0  199        0       0
10.181.140.0         0,5025126     1  198        0       0
10.182.128.0          27,13568    54  145        6       0
10.182.129.0           2,01005     4  195        0       0
10.182.130.0         0,4950495     1  201        1       0
10.182.131.0                 0     0  199        0       0
10.182.132.0                 0     0  199        0       0
10.182.133.0                 0     0  199        0       0
10.182.134.0          14,21801    30  181        0       0
10.182.135.0              21,5    43  156        0       1
10.182.136.0          8,040201    16  183        0       0
10.182.137.0              20,5    41  158        0       1
10.182.138.0          35,21127    75  138        2       0
10.182.139.0          15,09434    32  180        0       0
10.182.140.0          14,07035    28  171        2       0
10.182.141.0                 0     0  214        0       0
10.182.142.0                 0     0  199        0       0
10.182.144.0          43,84237    89  114       49       0
10.182.150.0               100   199    0        0       0
10.182.151.0               100   199    0        0       0
10.182.152.0               100   199    0        0       0
10.182.153.0          91,45728   182   17        0       0
10.182.154.0               100   199    0        0       0
10.182.155.0               100   199    0        1       0
10.182.218.0                20    40  160        0       0
10.182.219.0          83,33334     5    1        5       0
192.168.1.0                  0     0  253        0       0



=== SCOPES WITH UTILIZATION 85% OR MORE ===

ScopeId      PercentageInUse InUse Free Reserved Pending
-------      --------------- ----- ---- -------- -------
10.182.150.0             100   199    0        0       0
10.182.151.0             100   199    0        0       0
10.182.152.0             100   199    0        0       0
10.182.153.0        91,45728   182   17        0       0
10.182.154.0             100   199    0        0       0
10.182.155.0             100   199    0        1       0



=== EXCLUSION RANGES ===

Scope: 10.7.128.0 / KA-ToIP-VL2128
No exclusions configured.

Scope: 10.7.129.0 / KA-ToIP-VL2129
No exclusions configured.

Scope: 10.7.130.0 / KA-ToIP-VL2130
No exclusions configured.

Scope: 10.7.131.0 / KA-ToIP-VL2131
No exclusions configured.

Scope: 10.7.132.0 / KA-ToIP-VL2132
No exclusions configured.

Scope: 10.7.133.0 / KA-ToIP-VL2133
No exclusions configured.

Scope: 10.7.134.0 / KA-ToIP-VL2134
No exclusions configured.

Scope: 10.7.191.0 / KA-ToIP-VL2191
No exclusions configured.

Scope: 10.7.191.128 / KA-ToIP-VL2491
No exclusions configured.

Scope: 10.139.184.128 / POOL_LAN_WIRED
No exclusions configured.

Scope: 10.139.184.240 / WiFi_AP
No exclusions configured.

Scope: 10.139.185.0 / POOL_LAN_WIFI
No exclusions configured.

Scope: 10.181.130.0 / KA-USER-FERRAGE-IP3-VL730-LEGACY
No exclusions configured.

Scope: 10.181.131.0 / VLAN731
No exclusions configured.

Scope: 10.181.132.0 / KA-USER-MONTAGE-IP3-VL732-LEGACY
No exclusions configured.

Scope: 10.181.133.0 / KA-AUT-FERRAGE-IP3-VL733-LEGACY
No exclusions configured.

Scope: 10.181.134.0 / KA-AUT-PEINTURE-IP3-VL734-LEGACY
No exclusions configured.

Scope: 10.181.135.0 / KA-AUT-MONTAGE-IP3-VL735-LEGACY
No exclusions configured.

Scope: 10.181.137.0 / KA-USER-MONTAGE-IP3-VL737-LEGACY
No exclusions configured.

Scope: 10.181.138.0 / KA-USER-FERRAGE-IP3-VL738
No exclusions configured.

Scope: 10.181.139.0 / KA-USER-PEINTURE-IP3-VL739
No exclusions configured.

Scope: 10.181.140.0 / KA-USER-MONTAGE-IP3-VL740
No exclusions configured.

Scope: 10.182.128.0 / KA-USERS-IP12-VL128
No exclusions configured.

Scope: 10.182.129.0 / KA-USERS-IP12-VL129
No exclusions configured.

Scope: 10.182.130.0 / KA-USERS-IP12-VL130
No exclusions configured.

Scope: 10.182.131.0 / KA-USERS-IP12-VL131
No exclusions configured.

Scope: 10.182.132.0 / KA-USERS-IP12-VL132
No exclusions configured.

Scope: 10.182.133.0 / KA-USERS-IP12-VL133
No exclusions configured.

Scope: 10.182.134.0 / KA-USERS-IP12-VL134
No exclusions configured.

Scope: 10.182.135.0 / KA-USERS-IP12-VL135
No exclusions configured.

Scope: 10.182.136.0 / KA-USERS-IP12-VL136
No exclusions configured.

Scope: 10.182.137.0 / KA-USERS-IP12-VL137
No exclusions configured.

Scope: 10.182.138.0 / KA-USERS-IP12-VL138
No exclusions configured.

Scope: 10.182.139.0 / KA-USERS-IP12-VL139
No exclusions configured.

Scope: 10.182.140.0 / KA-USERS-IP12-VL140
No exclusions configured.

Scope: 10.182.141.0 / KA-USERS-IP12-VL141
No exclusions configured.

Scope: 10.182.142.0 / KA-USERS-IP12-VL142
No exclusions configured.

Scope: 10.182.144.0 / KA-USERS-IP12-VL144
No exclusions configured.

Scope: 10.182.150.0 / KA-USERS-IP12-VL150
No exclusions configured.

Scope: 10.182.151.0 / KA-USERS-IP12-VL151
No exclusions configured.

Scope: 10.182.152.0 / KA-USERS-IP12-VL152
No exclusions configured.

Scope: 10.182.153.0 / KA-USERS-IP12-VL153
No exclusions configured.

Scope: 10.182.154.0 / KA-USERS-IP12-VL154-LUR
No exclusions configured.

Scope: 10.182.155.0 / KA-USERS-IP12-VL155-LUR
No exclusions configured.

Scope: 10.182.218.0 / VLAN948
No exclusions configured.

Scope: 10.182.219.0 / KA-SERVERS-IP123-VL219

ScopeId      StartRange     EndRange      
-------      ----------     --------      
10.182.219.0 10.182.219.239 10.182.219.239
10.182.219.0 10.182.219.230 10.182.219.230
10.182.219.0 10.182.219.229 10.182.219.229
10.182.219.0 10.182.219.233 10.182.219.233
10.182.219.0 10.182.219.236 10.182.219.236
10.182.219.0 10.182.219.237 10.182.219.237



Scope: 192.168.1.0 / WIFI_GUEST
No exclusions configured.

=== DHCP OPTIONS PER SCOPE ===

Scope: 10.7.128.0 / KA-ToIP-VL2128

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.128.254}
      81        {21}          



Scope: 10.7.129.0 / KA-ToIP-VL2129

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.129.254}
      81        {21}          



Scope: 10.7.130.0 / KA-ToIP-VL2130

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.130.254}
      81        {21}          



Scope: 10.7.131.0 / KA-ToIP-VL2131

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.131.254}
      81        {21}          



Scope: 10.7.132.0 / KA-ToIP-VL2132

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.132.254}
      81        {21}          



Scope: 10.7.133.0 / KA-ToIP-VL2133

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.133.254}
      81        {21}          



Scope: 10.7.134.0 / KA-ToIP-VL2134

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.134.254}
      81        {21}          



Scope: 10.7.191.0 / KA-ToIP-VL2191

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.191.126}



Scope: 10.7.191.128 / KA-ToIP-VL2491

OptionId Name   Value         
-------- ----   -----         
      51 Lease  {691200}      
       3 Router {10.7.191.254}



Scope: 10.139.184.128 / POOL_LAN_WIRED

OptionId Name            Value                                                   
-------- ----            -----                                                   
       6 DNS Servers     {10.89.201.70, 10.182.219.201, 10.183.0.13, 10.183.0.14}
      51 Lease           {691200}                                                
       3 Router          {10.139.184.129}                                        
      15 DNS Domain Name {pcmarus.loc}                                           
      81                 {21}                                                    



Scope: 10.139.184.240 / WiFi_AP

OptionId Name                 Value                                     
-------- ----                 -----                                     
      51 Lease                {691200}                                  
       3 Router               {10.139.184.241}                          
      15 DNS Domain Name      {pcmarus.loc}                             
       6 DNS Servers          {10.183.0.13, 10.183.0.14, 10.182.219.201}
      43 Vendor Specific Info {0xF1, 0x04, 0x0A, 0xB6...}               



Scope: 10.139.185.0 / POOL_LAN_WIFI

OptionId Name            Value                                     
-------- ----            -----                                     
       6 DNS Servers     {10.182.219.201, 10.183.0.13, 10.183.0.14}
      51 Lease           {691200}                                  
       3 Router          {10.139.185.1}                            
      15 DNS Domain Name {pcmarus.loc}                             



Scope: 10.181.130.0 / KA-USER-FERRAGE-IP3-VL730-LEGACY

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.181.130.254}
      51 Lease  {604800}        
      81        {21}            



Scope: 10.181.131.0 / VLAN731

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.131.254}
      81        {23}            



Scope: 10.181.132.0 / KA-USER-MONTAGE-IP3-VL732-LEGACY

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.181.132.254}
      51 Lease  {604800}        
      81        {21}            



Scope: 10.181.133.0 / KA-AUT-FERRAGE-IP3-VL733-LEGACY

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.133.254}



Scope: 10.181.134.0 / KA-AUT-PEINTURE-IP3-VL734-LEGACY

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.134.254}



Scope: 10.181.135.0 / KA-AUT-MONTAGE-IP3-VL735-LEGACY

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.135.254}



Scope: 10.181.137.0 / KA-USER-MONTAGE-IP3-VL737-LEGACY

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.181.137.254}
      51 Lease  {604800}        
      81        {21}            



Scope: 10.181.138.0 / KA-USER-FERRAGE-IP3-VL738

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.138.254}



Scope: 10.181.139.0 / KA-USER-PEINTURE-IP3-VL739

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.139.254}



Scope: 10.181.140.0 / KA-USER-MONTAGE-IP3-VL740

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {691200}        
       3 Router {10.181.140.254}
      81        {21}            



Scope: 10.182.128.0 / KA-USERS-IP12-VL128

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.182.128.254}
      51 Lease  {172800}        
      81        {23}            



Scope: 10.182.129.0 / KA-USERS-IP12-VL129

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.129.254}



Scope: 10.182.130.0 / KA-USERS-IP12-VL130

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.130.254}



Scope: 10.182.131.0 / KA-USERS-IP12-VL131

OptionId Name   Value           
-------- ----   -----           
      81        {7}             
      51 Lease  {172800}        
       3 Router {10.182.131.254}



Scope: 10.182.132.0 / KA-USERS-IP12-VL132

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.132.254}



Scope: 10.182.133.0 / KA-USERS-IP12-VL133

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.133.254}



Scope: 10.182.134.0 / KA-USERS-IP12-VL134

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.134.254}



Scope: 10.182.135.0 / KA-USERS-IP12-VL135

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.135.254}



Scope: 10.182.136.0 / KA-USERS-IP12-VL136

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.136.254}
      81        {23}            



Scope: 10.182.137.0 / KA-USERS-IP12-VL137

OptionId Name   Value           
-------- ----   -----           
      81        {23}            
       3 Router {10.182.137.254}
      51 Lease  {172800}        



Scope: 10.182.138.0 / KA-USERS-IP12-VL138

OptionId Name   Value           
-------- ----   -----           
      81        {23}            
      51 Lease  {172800}        
       3 Router {10.182.138.254}



Scope: 10.182.139.0 / KA-USERS-IP12-VL139

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.139.254}
      81        {23}            



Scope: 10.182.140.0 / KA-USERS-IP12-VL140

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.182.140.254}
      51 Lease  {172800}        



Scope: 10.182.141.0 / KA-USERS-IP12-VL141

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.141.254}



Scope: 10.182.142.0 / KA-USERS-IP12-VL142

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {172800}        
       3 Router {10.182.142.254}



Scope: 10.182.144.0 / KA-USERS-IP12-VL144

OptionId Name   Value           
-------- ----   -----           
      81        {23}            
       3 Router {10.182.144.254}
      51 Lease  {172800}        



Scope: 10.182.150.0 / KA-USERS-IP12-VL150

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.150.254}



Scope: 10.182.151.0 / KA-USERS-IP12-VL151

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.151.254}



Scope: 10.182.152.0 / KA-USERS-IP12-VL152

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.152.254}



Scope: 10.182.153.0 / KA-USERS-IP12-VL153

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.153.254}



Scope: 10.182.154.0 / KA-USERS-IP12-VL154-LUR

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.154.254}



Scope: 10.182.155.0 / KA-USERS-IP12-VL155-LUR

OptionId Name   Value           
-------- ----   -----           
      51 Lease  {21600}         
       3 Router {10.182.155.254}



Scope: 10.182.218.0 / VLAN948

OptionId Name                 Value                      
-------- ----                 -----                      
       3 Router               {10.182.218.254}           
      81                      {21}                       
      43 Vendor Specific Info {0xF1, 0x04, 0x0A, 0xB6...}
      51 Lease                {691200}                   



Scope: 10.182.219.0 / KA-SERVERS-IP123-VL219

OptionId Name   Value           
-------- ----   -----           
       3 Router {10.182.219.254}
      51 Lease  {691200}        



Scope: 192.168.1.0 / WIFI_GUEST

OptionId Name               Value             
-------- ----               -----             
      51 Lease              {691200}          
       3 Router             {192.168.1.1}     
      42 NTP Servers        {192.168.1.1}     
       6 DNS Servers        {8.8.8.8, 1.1.1.1}
      15 DNS Domain Name    {guest}           
     119 Domain Search List {0x00}            
      81                    {0}               



=== SERVER-LEVEL DHCP OPTIONS ===

OptionId Name                 Value                                     
-------- ----                 -----                                     
      15 DNS Domain Name      {pcmarus.loc}                             
       6 DNS Servers          {10.182.219.201, 10.183.0.13, 10.183.0.14}
      42 NTP Servers          {10.182.219.100, 10.182.219.201}          
     119 Domain Search List   {0x07, 0x70, 0x63, 0x6D...}               
      43 Vendor Specific Info {0xF1, 0x04, 0x0A, 0xB6...}               



=== DHCP FAILOVER ===
DHCP Failover is not configured.

=== DHCP SERVER SETTINGS ===
Get-DhcpServerv4Setting : The term 'Get-DhcpServerv4Setting' is not recognized as the name of a cmdlet, function, script file, or oper
able program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Windows\Temp\DHCP_Audit_20260721_190610.ps1:96 char:5
+     Get-DhcpServerv4Setting -ErrorAction SilentlyContinue |
+     ~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-DhcpServerv4Setting:String) [], CommandNotFound    Exception
    + FullyQualifiedErrorId : CommandNotFoundException
 

=== DHCP AUDIT SETTINGS ===


DiskCheckInterval     : 50
Enable                : True
MaxMBFileSize         : 70
MinMBDiskSpace        : 20
Path                  : C:\Windows\system32\dhcp
PSComputerName        : 
CimClass              : root/Microsoft/Windows/DHCP:DhcpServerAuditLog
CimInstanceProperties : {DiskCheckInterval, Enable, MaxMBFileSize, MinMBDiskSpace...}
CimSystemProperties   : Microsoft.Management.Infrastructure.CimSystemProperties




=== DHCP DATABASE SETTINGS ===


BackupInterval        : 60
BackupPath            : C:\Windows\system32\dhcp\backup
CleanupInterval       : 60
FileName              : C:\Windows\system32\dhcp\dhcp.mdb
LoggingEnabled        : True
RestoreFromBackup     : False
PSComputerName        : 
CimClass              : root/Microsoft/Windows/DHCP:DhcpServerDatabase
CimInstanceProperties : {BackupInterval, BackupPath, CleanupInterval, FileName...}
CimSystemProperties   : Microsoft.Management.Infrastructure.CimSystemProperties




=== DHCP AUTHORIZATION IN ACTIVE DIRECTORY ===

DnsName               IPAddress     
-------               ---------     
msk-dc-01.pcmarus.loc 10.89.201.70  
msk-dc-01.pcmarus.loc 10.89.201.73  
ruklgdc01.pcmarus.loc 10.182.219.201



=== DISK C: ===

DeviceID SizeGB FreeGB FreePercent
-------- ------ ------ -----------
C:       126,33  26,96       21,34



=== DHCP ERRORS AND WARNINGS FOR LAST 3 DAYS ===

Log: Microsoft-Windows-Dhcp-Server/Operational
No errors or warnings found.

Log: Microsoft-Windows-Dhcp-Server/FilterNotifications
No errors or warnings found.

Log: Microsoft-Windows-Dhcp-Client/Admin
No errors or warnings found.

Log: DhcpAdminEvents


TimeCreated      : 21.07.2026 19:06:14
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:13
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:13
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:13
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:08
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:07
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:06:05
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:06:03
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:06:03
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:06:01
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:06:01
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:06:00
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:59
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:59
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:58
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:57
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:55
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:55
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:53
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:52
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:52
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:49
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:47
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:46
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:45
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:44
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:42
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:41
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:41
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:41
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:39
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:38
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:38
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:38
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:37
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:34
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:34
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:34
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:32
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:31
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:30
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:26
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B3B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:26
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:26
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from BACA8574555F was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL155-LUR are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP 
addresses.

TimeCreated      : 21.07.2026 19:05:26
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:24
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:23
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:22
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:20
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03B13 was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.

TimeCreated      : 21.07.2026 19:05:20
Id               : 20287
LevelDisplayName : Error
Message          : DHCP client request from E03C1CC03F0B was dropped since the applicable IP address ranges in scope/superscope KA-USE
RS-IP12-VL151 are out of available IP addresses. This could be because of IP address ranges of a policy being out of available IP addr
esses.




=== LATEST DHCP AUDIT LOG ===
File: C:\Windows\System32\dhcp\DhcpSrvLog-Tue.log
Modified: 07/21/2026 19:05:58
15,07/21/26,19:01:25,NACK,10.182.152.158,,E03C1CC03B13,,0,6,,,,,,,,,0
30,07/21/26,19:01:29,DNS Update Request,10.182.140.10,B1152099.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:01:29,Renew,10.182.140.10,B1152099.pcmarus.loc,2CF05D135A0D,,2989354530,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:01:29,DNS Update Successful,10.182.140.10,B1152099.pcmarus.loc,,,0,6,,,,,,,,,0
30,07/21/26,19:01:36,DNS Update Request,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:01:36,Renew,10.182.138.27,B1056378.pcmarus.loc,94C691BE6140,,2570541761,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:01:36,DNS Update Successful,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:01:41,Renew,10.182.152.79,,12DE7229762F,,337377607,0,,,,0x616E64726F69642D646863702D3133,android-dhcp-13,,,,0
15,07/21/26,19:01:51,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:01:51,DNS Update Request,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:01:51,Renew,10.182.138.18,AT000010.pcmarus.loc,28C5C8593C89,,47086868,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:01:51,DNS Update Successful,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:01:54,NACK,10.182.152.158,,E03C1CC03B13,,0,6,,,,,,,,,0
30,07/21/26,19:02:17,DNS Update Request,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:02:17,Renew,10.182.134.28,B1056291.pcmarus.loc,94C691B8BA24,,1678859531,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:02:17,DNS Update Successful,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:02:31,NACK,10.182.151.103,,E03C1CC03B13,,0,6,,,,,,,,,0
30,07/21/26,19:02:36,DNS Update Request,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:02:36,Renew,10.182.138.27,B1056378.pcmarus.loc,94C691BE6140,,661497328,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:02:36,DNS Update Successful,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:02:48,NACK,10.182.152.122,,4EE2087041F2,,0,6,,,,,,,,,0
11,07/21/26,19:02:50,Renew,10.182.151.94,,4EE2087041F2,,2732949917,0,,,,,,,,,0
30,07/21/26,19:02:51,DNS Update Request,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:02:51,Renew,10.182.138.18,AT000010.pcmarus.loc,28C5C8593C89,,2084879922,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:02:51,DNS Update Successful,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:02:51,NACK,10.182.153.176,,E03C1CC03F0B,,0,6,,,,,,,,,0
15,07/21/26,19:02:54,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:03:01,DNS Update Request,10.182.139.9,B1152085.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:01,Renew,10.182.139.9,B1152085.pcmarus.loc,2CF05D135BFB,,180421551,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:03:01,DNS Update Successful,10.182.139.9,B1152085.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:03:03,NACK,10.182.151.82,,6A3EDFDBD680,,0,6,,,,,,,,,0
15,07/21/26,19:03:04,NACK,10.182.151.82,,6A3EDFDBD680,,0,6,,,,,,,,,0
15,07/21/26,19:03:06,NACK,10.182.151.82,,6A3EDFDBD680,,0,6,,,,,,,,,0
11,07/21/26,19:03:08,Renew,10.182.152.126,A36-pol-zovatela-Marina.pcmarus.loc,6A3EDFDBD680,,1781613078,0,,,,0x616E64726F69642D64686370
2D3136,android-dhcp-16,,,,0
15,07/21/26,19:03:09,NACK,10.182.151.103,,E03C1CC03B13,,0,6,,,,,,,,,0
15,07/21/26,19:03:10,NACK,10.182.153.176,,E03C1CC03F0B,,0,6,,,,,,,,,0
15,07/21/26,19:03:15,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:03:17,DNS Update Request,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:17,Renew,10.182.134.28,B1056291.pcmarus.loc,94C691B8BA24,,2868129351,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:03:17,DNS Update Successful,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:03:29,NACK,10.182.153.176,,E03C1CC03F0B,,0,6,,,,,,,,,0
30,07/21/26,19:03:34,DNS Update Request,10.182.153.159,KA000031.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:34,Renew,10.182.153.159,KA000031.pcmarus.loc,DC4BA112D0EC,,1717589559,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:03:34,DNS Update Successful,10.182.153.159,KA000031.pcmarus.loc,,,0,6,,,,,,,,,0
30,07/21/26,19:03:36,DNS Update Request,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:36,Renew,10.182.138.27,B1056378.pcmarus.loc,94C691BE6140,,1029578265,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:03:36,DNS Update Successful,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:48,Renew,10.182.150.15,,E03C1CC0380D,,196671618,0,,,,0x616E64726F69642D646863702D3133,android-dhcp-13,,,,0
11,07/21/26,19:03:48,Renew,10.182.150.6,,E03C1CC03F01,,2754885324,0,,,,0x616E64726F69642D646863702D3133,android-dhcp-13,,,,0
11,07/21/26,19:03:50,Renew,10.182.151.49,,E03C1CC03B2B,,1355430903,0,,,,0x616E64726F69642D646863702D3133,android-dhcp-13,,,,0
30,07/21/26,19:03:51,DNS Update Request,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:03:51,Renew,10.182.138.18,AT000010.pcmarus.loc,28C5C8593C89,,2909980394,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:03:51,DNS Update Successful,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:03:56,NACK,10.182.152.158,,E03C1CC03B13,,0,6,,,,,,,,,0
15,07/21/26,19:03:57,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
15,07/21/26,19:04:03,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:04:11,DNS Update Request,10.182.140.10,B1152099.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:04:11,Renew,10.182.140.10,B1152099.pcmarus.loc,2CF05D135A0D,,1076420675,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:04:11,DNS Update Successful,10.182.140.10,B1152099.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:04:12,Renew,10.182.152.126,A36-pol-zovatela-Marina.pcmarus.loc,6A3EDFDBD680,,3844064133,0,,,,0x616E64726F69642D64686370
2D3136,android-dhcp-16,,,,0
11,07/21/26,19:04:13,Renew,10.182.152.126,A36-pol-zovatela-Marina.pcmarus.loc,6A3EDFDBD680,,3844064133,0,,,,0x616E64726F69642D64686370
2D3136,android-dhcp-16,,,,0
11,07/21/26,19:04:15,Renew,10.182.152.126,A36-pol-zovatela-Marina.pcmarus.loc,6A3EDFDBD680,,3844064133,0,,,,0x616E64726F69642D64686370
2D3136,android-dhcp-16,,,,0
30,07/21/26,19:04:17,DNS Update Request,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:04:17,Renew,10.182.134.28,B1056291.pcmarus.loc,94C691B8BA24,,2781277996,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:04:17,DNS Update Successful,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:04:24,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
15,07/21/26,19:04:26,NACK,10.182.151.103,,E03C1CC03B13,,0,6,,,,,,,,,0
11,07/21/26,19:04:31,Renew,10.182.152.126,A36-pol-zovatela-Marina.pcmarus.loc,6A3EDFDBD680,,2275940584,0,,,,0x616E64726F69642D64686370
2D3136,android-dhcp-16,,,,0
30,07/21/26,19:04:36,DNS Update Request,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:04:36,Renew,10.182.138.27,B1056378.pcmarus.loc,94C691BE6140,,3080541646,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:04:36,DNS Update Successful,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:04:39,NACK,10.182.155.22,,E03C1CC03F0B,,0,6,,,,,,,,,0
15,07/21/26,19:04:44,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:04:51,DNS Update Request,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:04:51,Renew,10.182.138.18,AT000010.pcmarus.loc,28C5C8593C89,,448864068,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:04:51,DNS Update Successful,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:05:02,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
15,07/21/26,19:05:04,NACK,10.182.152.158,,E03C1CC03B13,,0,6,,,,,,,,,0
30,07/21/26,19:05:09,DNS Update Request,10.182.139.3,B1064538.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:05:09,Renew,10.182.139.3,B1064538.pcmarus.loc,94C691D39D27,,3557600549,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:05:09,DNS Update Successful,10.182.139.3,B1064538.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:05:11,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
15,07/21/26,19:05:12,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
30,07/21/26,19:05:17,DNS Update Request,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:05:17,Renew,10.182.134.28,B1056291.pcmarus.loc,94C691B8BA24,,2196383504,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:05:17,DNS Update Successful,10.182.134.28,B1056291.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:05:19,NACK,10.182.155.22,,E03C1CC03F0B,,0,6,,,,,,,,,0
30,07/21/26,19:05:36,DNS Update Request,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:05:36,Renew,10.182.138.27,B1056378.pcmarus.loc,94C691BE6140,,949066405,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:05:36,DNS Update Successful,10.182.138.27,B1056378.pcmarus.loc,,,0,6,,,,,,,,,0
30,07/21/26,19:05:36,DNS Update Request,10.182.139.9,B1152085.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:05:36,Renew,10.182.139.9,B1152085.pcmarus.loc,2CF05D135BFB,,839982532,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:05:36,DNS Update Successful,10.182.139.9,B1152085.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:05:38,NACK,10.182.155.22,,E03C1CC03F0B,,0,6,,,,,,,,,0
15,07/21/26,19:05:41,NACK,10.182.152.158,,E03C1CC03B13,,0,6,,,,,,,,,0
30,07/21/26,19:05:51,DNS Update Request,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
11,07/21/26,19:05:51,Renew,10.182.138.18,AT000010.pcmarus.loc,28C5C8593C89,,2329757737,0,,,,0x4D53465420352E30,MSFT 5.0,,,,0
32,07/21/26,19:05:51,DNS Update Successful,10.182.138.18,AT000010.pcmarus.loc,,,0,6,,,,,,,,,0
15,07/21/26,19:05:52,NACK,10.182.154.39,,E03C1CC03B3B,,0,6,,,,,,,,,0
15,07/21/26,19:05:58,NACK,10.182.155.22,,E03C1CC03F0B,,0,6,,,,,,,,,0


PS C:\Windows\system32>