add nic check
This commit is contained in:
parent
2203303968
commit
4d63b93edb
@ -1,3 +1,4 @@
|
|||||||
|
interface: eth0
|
||||||
domains:
|
domains:
|
||||||
- name: domain.name
|
- name: domain.name
|
||||||
subdomain:
|
subdomain:
|
||||||
|
20
main.go
20
main.go
@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"regexp"
|
"regexp"
|
||||||
"time"
|
"time"
|
||||||
@ -42,6 +43,25 @@ func main() {
|
|||||||
newR53()
|
newR53()
|
||||||
config = setting.LoadConfig(confpath)
|
config = setting.LoadConfig(confpath)
|
||||||
fmt.Println(config)
|
fmt.Println(config)
|
||||||
|
|
||||||
|
// wait nic
|
||||||
|
for {
|
||||||
|
nics, err := net.Interfaces()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
nicFlag := false
|
||||||
|
for _, v := range nics {
|
||||||
|
if v.Name == config.NIC {
|
||||||
|
nicFlag = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if nicFlag == true {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
time.Sleep(time.Second * 5)
|
||||||
|
}
|
||||||
|
|
||||||
ip = getMyIP()
|
ip = getMyIP()
|
||||||
if ok, err := checkIP(ip); err != nil || !ok {
|
if ok, err := checkIP(ip); err != nil || !ok {
|
||||||
println("ip check fail")
|
println("ip check fail")
|
||||||
|
@ -11,6 +11,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
|
NIC string `yaml:"interface"`
|
||||||
Domains []struct {
|
Domains []struct {
|
||||||
Name string `yaml:"name"`
|
Name string `yaml:"name"`
|
||||||
Sub []string `yaml:"subdomain,flow"`
|
Sub []string `yaml:"subdomain,flow"`
|
||||||
|
Loading…
Reference in New Issue
Block a user