Added project files
This commit is contained in:
parent
40615a97f8
commit
be40387f4a
10 changed files with 486 additions and 0 deletions
22
internal/configurator.go
Normal file
22
internal/configurator.go
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
package configurator
|
||||
|
||||
type IPAddr struct {
|
||||
IpAddress string `json:"IPAddress"`
|
||||
Network string `json:"Network"`
|
||||
}
|
||||
|
||||
type EthernetInterface struct {
|
||||
Id string
|
||||
Description string
|
||||
MacAddress string
|
||||
LastUpdate string
|
||||
ComponentId string
|
||||
Type string
|
||||
IpAddresses []IPAddr
|
||||
}
|
||||
|
||||
type DHCP struct {
|
||||
Hostname string
|
||||
MacAddress string
|
||||
IpAddress []IPAddr
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue