Updating VLANID to correct range

This commit is contained in:
Dan Cuomo 2021-04-07 17:12:14 -07:00 коммит произвёл GitHub
Родитель 61fec10e80
Коммит c1f39257c7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -678,8 +678,8 @@ Class VLANID {
[string] $DefaultRegistryValue = 0
[int] $NumericParameterBaseValue = 10 # Must be this value
[int] $NumericParameterMaxValue = 4095 # Must be >= this value 9014 + EncapOverhead (160)
[int] $NumericParameterMinValue = 0 # Must be < than this value
[int] $NumericParameterMaxValue = 4094 # Must be this value
[int] $NumericParameterMinValue = 0 # Must be this value
[int] $NumericParameterStepValue = 1 # Must be this value
VLANID () {}