mirror of
https://github.com/siderolabs/talos.git
synced 2025-11-08 04:11:42 +01:00
Also expand internal bond configuration to cover missing fields. They are not going to be exposed in legacy configuration. Fixes #10960 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package nethelpers
|
|
|
|
import "fmt"
|
|
|
|
// ARPValidate is an ARP Validation mode.
|
|
type ARPValidate uint32
|
|
|
|
// ARPValidate constants.
|
|
//
|
|
//structprotogen:gen_enum
|
|
const (
|
|
ARPValidateNone ARPValidate = iota // none
|
|
ARPValidateActive // active
|
|
ARPValidateBackup // backup
|
|
ARPValidateAll // all
|
|
ARPValidateFilter // filter
|
|
ARPValidateFilterActive // filter-active
|
|
ARPValidateFilterBackup // filter-backup
|
|
)
|
|
|
|
// ARPValidateByName parses ARPValidate.
|
|
func ARPValidateByName(a string) (ARPValidate, error) {
|
|
switch a {
|
|
case "", "none":
|
|
return ARPValidateNone, nil
|
|
case "active":
|
|
return ARPValidateActive, nil
|
|
case "backup":
|
|
return ARPValidateBackup, nil
|
|
case "all":
|
|
return ARPValidateAll, nil
|
|
case "filter":
|
|
return ARPValidateFilter, nil
|
|
case "filter-active":
|
|
return ARPValidateFilterActive, nil
|
|
case "filter-backup":
|
|
return ARPValidateFilterBackup, nil
|
|
default:
|
|
return 0, fmt.Errorf("invalid arp_validate mode %v", a)
|
|
}
|
|
}
|