-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (49 loc) · 919 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"embed"
"net"
"os"
"os/signal"
"syscall"
)
//go:embed tftpboot
var tftpRoot embed.FS
func main() {
// config
Conf := &Config{}
Conf.ParseConfig("config.yaml")
// logger
Initial(Conf.Logger.Level, InitialFD(Conf.Logger.File))
// dhcp
ip := net.ParseIP(Conf.IPAddr)
dhcpServer := &DHCPServer{
Handler: &DHCPHandler{
DHCPAddr: ip,
TFTPAddr: ip,
},
Iface: Conf.Iface,
Port: Conf.DHCP.Port,
}
go dhcpServer.Run()
// tftp
tftpServer := &TFTPServer{
Handler: &TFTPHandler{
EmbedRoot: tftpRoot,
TftpAddr: ip,
PXEConfig: Conf.PXE,
},
Port: Conf.TFTP.Port,
External: Conf.TFTP.External,
}
go tftpServer.Run()
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
done := make(chan bool, 1)
go func() {
<-sigs
done <- true
}()
Info("Awaiting signal ......")
<-done
Info("Except signal, exiting ......")
}