commit 016c44618b06811a784b14597b1627e060ec1ca0 Author: zhilv Date: Wed Dec 3 23:29:51 2025 +0800 feat: 项目初始化 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4917994 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +bin +config.* +.idea \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..297b727 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +APP_NAME = netctl +SRC = . +OUTPUT = ./bin/$(APP_NAME).exe +GO = go + +# 获取 Git commit +GIT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo none) +# 获取当前时间 UTC +BUILD_TIME := $(shell date -u +%Y-%m-%dT%H:%M:%SZ) + +.PHONY: build run clean + +# 编译命令 +build: + $(GO) build -ldflags "-X 'netcli/cmd.Version=1.0.0' -X 'netcli/cmd.Commit=$(GIT_COMMIT)' -X 'netcli/cmd.BuildTime=$(BUILD_TIME)'" -o $(OUTPUT) $(SRC) + +# 直接运行 +run: + $(GO) run -ldflags "-X 'netcli/cmd.Version=1.0.0' -X 'netcli/cmd.Commit=$(GIT_COMMIT)' -X 'netcli/cmd.BuildTime=$(BUILD_TIME)'" $(SRC) + +# 清理编译文件 +clean: + rm -f $(OUTPUT) diff --git a/cmd/dhcp.go b/cmd/dhcp.go new file mode 100644 index 0000000..ec89e15 --- /dev/null +++ b/cmd/dhcp.go @@ -0,0 +1,53 @@ +package cmd + +import ( + "fmt" + stdnet "net" + + "netcli/internal/constants" + "netcli/internal/net" + + "github.com/spf13/cobra" +) + +// dhcpCmd represents the dhcp command +var dhcpCmd = &cobra.Command{ + Use: "dhcp", + Short: "将指定网卡改为 DHCP 自动获取 IP", + RunE: func(cmd *cobra.Command, args []string) error { + // 检查管理员权限 + if !net.IsAdmin() { + fmt.Println("程序需要管理员权限,尝试提升...") + return net.RunAsAdmin() + } + + // 获取所有网卡 + ifaces, err := stdnet.Interfaces() + if err != nil { + return fmt.Errorf("获取网卡失败: %w", err) + } + + var nics []net.NetIfWrap + for _, i := range ifaces { + nics = append(nics, net.NetIfWrap{i}) + } + + // 用户选择网卡 + nic, err := net.ChooseNic(nics, constants.DefaultDHCPMsg) + if err != nil { + return err + } + + // 执行 netsh 命令设置 DHCP + if err := net.SetDHCP(nic); err != nil { + return err + } + + fmt.Printf("网卡 %s 已设置为 DHCP 自动获取 IP\n", nic.Name) + return nil + }, +} + +func init() { + rootCmd.AddCommand(dhcpCmd) +} diff --git a/cmd/root.go b/cmd/root.go new file mode 100644 index 0000000..63236ed --- /dev/null +++ b/cmd/root.go @@ -0,0 +1,46 @@ +package cmd + +import ( + "fmt" + "os" + "os/exec" + + netmod "netcli/internal/net" + + "github.com/spf13/cobra" +) + +// rootCmd represents the base command when called without any subcommands +var rootCmd = &cobra.Command{ + Use: "netctl", + Short: "网络切换工具", + Long: "netctl 是一个用于切换网卡静态IP/DHCP的 CLI 工具", +} + +// Execute adds all child commands to the root command and sets flags appropriately. +// This is called by main.main(). +func Execute() { + if err := rootCmd.Execute(); err != nil { + os.Exit(1) + } +} + +// 通用命令运行函数 +func run(args ...string) { + cmd := exec.Command(args[0], args[1:]...) + out, err := cmd.CombinedOutput() + fmt.Println(string(out)) + if err != nil { + panic(err) + } +} + +// 判断当前程序是否管理员 +func IsAdmin() bool { + return netmod.IsAdmin() +} + +// 提升管理员权限 +func RunAsAdmin() error { + return netmod.RunAsAdmin() +} diff --git a/cmd/static.go b/cmd/static.go new file mode 100644 index 0000000..adf6fb3 --- /dev/null +++ b/cmd/static.go @@ -0,0 +1,70 @@ +package cmd + +import ( + "fmt" + stdnet "net" + + "netcli/config" + "netcli/internal/constants" + "netcli/internal/model" + netmod "netcli/internal/net" + + "github.com/AlecAivazis/survey/v2" + "github.com/spf13/cobra" +) + +var staticCmd = &cobra.Command{ + Use: "static", + Short: "设置静态IP", + RunE: func(cmd *cobra.Command, args []string) error { + // 管理员权限检查 + if !netmod.IsAdmin() { + fmt.Println("程序需要管理员权限,尝试提升...") + return netmod.RunAsAdmin() + } + + // 获取本机网卡 + ifaces, _ := stdnet.Interfaces() + var nics []netmod.NetIfWrap + for _, i := range ifaces { + nics = append(nics, netmod.NetIfWrap{i}) + } + + nic, _ := netmod.ChooseNic(nics, constants.DefaultStaticMsg) + + // 加载配置文件 + cfg, _ := config.LoadConfig(constants.DefaultConfig) + var rooms []model.ClassRoom + if cfg != nil && len(cfg.ClassRooms) > 0 { + rooms = cfg.ClassRooms + } else { + rooms = config.DefaultClassRooms() + } + + // 用户选择教室 + var roomNames []string + for _, r := range rooms { + roomNames = append(roomNames, r.Name) + } + + var choice string + survey.AskOne(&survey.Select{Message: "请选择教室:", Options: roomNames}, &choice) + + var room model.ClassRoom + for _, r := range rooms { + if r.Name == choice { + room = r + break + } + } + + fmt.Printf("正在设置静态IP...\n网卡: %s\nIP: %s\nMask: %s\nGateway: %s\n", + nic.Name, room.Addr, room.Mask, room.Gateway) + + return netmod.SetStaticIP(nic, room.Addr, room.Mask, room.Gateway) + }, +} + +func init() { + rootCmd.AddCommand(staticCmd) +} diff --git a/cmd/version.go b/cmd/version.go new file mode 100644 index 0000000..9db2ac1 --- /dev/null +++ b/cmd/version.go @@ -0,0 +1,28 @@ +package cmd + +import ( + "fmt" + "github.com/spf13/cobra" +) + +// 编译时注入变量 +var ( + Version = "dev" // 默认版本 + Commit = "none" + BuildTime = "unknown" +) + +var versionCmd = &cobra.Command{ + Use: "version", + Short: "显示软件版本信息", + Run: func(cmd *cobra.Command, args []string) { + fmt.Println("netctl - 网络切换工具") + fmt.Printf("Version: %s\n", Version) + fmt.Printf("Commit: %s\n", Commit) + fmt.Printf("BuildTime: %s\n", BuildTime) + }, +} + +func init() { + rootCmd.AddCommand(versionCmd) +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d7c6b3f --- /dev/null +++ b/go.mod @@ -0,0 +1,27 @@ +module netcli + +go 1.24 + +require ( + github.com/AlecAivazis/survey/v2 v2.3.7 // indirect + github.com/fsnotify/fsnotify v1.9.0 // indirect + github.com/go-viper/mapstructure/v2 v2.4.0 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect + github.com/mattn/go-colorable v0.1.2 // indirect + github.com/mattn/go-isatty v0.0.8 // indirect + github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect + github.com/pelletier/go-toml/v2 v2.2.4 // indirect + github.com/sagikazarmark/locafero v0.11.0 // indirect + github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect + github.com/spf13/afero v1.15.0 // indirect + github.com/spf13/cast v1.10.0 // indirect + github.com/spf13/cobra v1.10.1 // indirect + github.com/spf13/pflag v1.0.10 // indirect + github.com/spf13/viper v1.21.0 // indirect + github.com/subosito/gotenv v1.6.0 // indirect + go.yaml.in/yaml/v3 v3.0.4 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect + golang.org/x/text v0.28.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..6b17ef6 --- /dev/null +++ b/go.sum @@ -0,0 +1,83 @@ +github.com/AlecAivazis/survey/v2 v2.3.7 h1:6I/u8FvytdGsgonrYsVn2t8t4QiRnh6QSTqkkhIiSjQ= +github.com/AlecAivazis/survey/v2 v2.3.7/go.mod h1:xUTIdE4KCOIjsBAE1JYsUPoCqYdZ1reCfTwbto0Fduo= +github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2/go.mod h1:HBCaDeC1lPdgDeDbhX8XFpy1jqjK0IBG8W5K+xYqA0w= +github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g= +github.com/creack/pty v1.1.17/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k= +github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= +github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs= +github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM= +github.com/hinshun/vt10x v0.0.0-20220119200601-820417d04eec/go.mod h1:Q48J4R4DvxnHolD5P8pOtXigYlRuPLGl6moFx3ulM68= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU= +github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4= +github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE= +github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4= +github.com/pelletier/go-toml/v2 v2.2.4/go.mod h1:2gIqNv+qfxSVS7cM2xJQKtLSTLUE9V8t9Stt+h56mCY= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/sagikazarmark/locafero v0.11.0 h1:1iurJgmM9G3PA/I+wWYIOw/5SyBtxapeHDcg+AAIFXc= +github.com/sagikazarmark/locafero v0.11.0/go.mod h1:nVIGvgyzw595SUSUE6tvCp3YYTeHs15MvlmU87WwIik= +github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 h1:+jumHNA0Wrelhe64i8F6HNlS8pkoyMv5sreGx2Ry5Rw= +github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8/go.mod h1:3n1Cwaq1E1/1lhQhtRK2ts/ZwZEhjcQeJQ1RuC6Q/8U= +github.com/spf13/afero v1.15.0 h1:b/YBCLWAJdFWJTN9cLhiXXcD7mzKn9Dm86dNnfyQw1I= +github.com/spf13/afero v1.15.0/go.mod h1:NC2ByUVxtQs4b3sIUphxK0NioZnmxgyCrfzeuq8lxMg= +github.com/spf13/cast v1.10.0 h1:h2x0u2shc1QuLHfxi+cTJvs30+ZAHOGRic8uyGTDWxY= +github.com/spf13/cast v1.10.0/go.mod h1:jNfB8QC9IA6ZuY2ZjDp0KtFO2LZZlg4S/7bzP6qqeHo= +github.com/spf13/cobra v1.10.1 h1:lJeBwCfmrnXthfAupyUTzJ/J4Nc1RsHC/mSRU2dll/s= +github.com/spf13/cobra v1.10.1/go.mod h1:7SmJGaTHFVBY0jW4NXGluQoLvhqFQM+6XSKD+P4XaB0= +github.com/spf13/pflag v1.0.9 h1:9exaQaMOCwffKiiiYk6/BndUBv+iRViNW+4lEMi0PvY= +github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk= +github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.21.0 h1:x5S+0EU27Lbphp4UKm1C+1oQO+rKx36vfCoaVebLFSU= +github.com/spf13/viper v1.21.0/go.mod h1:P0lhsswPGWD/1lZJ9ny3fYnVqxiegrlNrEmgLjbTCAY= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= +github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= +go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f h1:v4INt8xihDGvnrfjMDVXGxw9wrfxYyCjk0KbXjhR55s= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU= +golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.4.0 h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng= +golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/internal/constants/constants.go b/internal/constants/constants.go new file mode 100644 index 0000000..757396d --- /dev/null +++ b/internal/constants/constants.go @@ -0,0 +1,8 @@ +package constants + +const ( + AppName = "netctl" + DefaultConfig = "config.yaml" + DefaultDHCPMsg = "请选择网卡以使用 DHCP" + DefaultStaticMsg = "请选择网卡以设置静态 IP" +) diff --git a/internal/model/classroom.go b/internal/model/classroom.go new file mode 100644 index 0000000..17df4f2 --- /dev/null +++ b/internal/model/classroom.go @@ -0,0 +1,13 @@ +package model + +type ClassRoom struct { + ID string + Name string + Addr string + Mask string + Gateway string +} + +func (c ClassRoom) GetName() string { + return c.Name +} diff --git a/internal/model/named.go b/internal/model/named.go new file mode 100644 index 0000000..81026fa --- /dev/null +++ b/internal/model/named.go @@ -0,0 +1,5 @@ +package model + +type Named interface { + GetName() string +} diff --git a/internal/net/nic.go b/internal/net/nic.go new file mode 100644 index 0000000..947e294 --- /dev/null +++ b/internal/net/nic.go @@ -0,0 +1,96 @@ +package net + +import ( + "fmt" + "net" + "os" + "os/exec" + + "github.com/AlecAivazis/survey/v2" + "golang.org/x/sys/windows" +) + +type NetIfWrap struct { + net.Interface +} + +func (n NetIfWrap) GetName() string { + return n.Interface.Name +} + +// 选择网卡 +func ChooseNic(nics []NetIfWrap, message string) (NetIfWrap, error) { + var names []string + for _, nic := range nics { + names = append(names, nic.Name) + } + var choice string + err := survey.AskOne(&survey.Select{ + Message: message, + Options: names, + }, &choice) + if err != nil { + return NetIfWrap{}, err + } + for _, nic := range nics { + if nic.Name == choice { + return nic, nil + } + } + return NetIfWrap{}, fmt.Errorf("未找到网卡: %s", choice) +} + +// 设置静态IP +func SetStaticIP(nic NetIfWrap, addr, mask, gateway string) error { + cmd := exec.Command("netsh", "interface", "ip", "set", "address", + fmt.Sprintf("name=%s", nic.Name), + "static", addr, mask, gateway) + out, err := cmd.CombinedOutput() + if err != nil { + return fmt.Errorf("netsh失败: %v, 输出: %s", err, string(out)) + } + return nil +} + +// 设置 DHCP +func SetDHCP(nic NetIfWrap) error { + cmd := exec.Command("netsh", "interface", "ip", "set", "address", + fmt.Sprintf("name=%s", nic.Name), "dhcp") + out, err := cmd.CombinedOutput() + if err != nil { + return fmt.Errorf("netsh失败: %v, 输出: %s", err, string(out)) + } + return nil +} + +// Windows 管理员检查 +func IsAdmin() bool { + sid, _ := windows.CreateWellKnownSid(windows.WinBuiltinAdministratorsSid) + token := windows.Token(0) + member, _ := token.IsMember(sid) + return member +} + +// 提升管理员权限 +func RunAsAdmin() error { + exe, _ := exec.LookPath(os.Args[0]) + args := os.Args[1:] + cmd := exec.Command("powershell", + "-Command", + fmt.Sprintf(`Start-Process -FilePath "%s" -ArgumentList %s -Verb RunAs`, exe, joinArgsArray(args)), + ) + cmd.Stdout = nil + cmd.Stderr = nil + return cmd.Run() +} + +func joinArgsArray(args []string) string { + res := "" + for i, a := range args { + if i > 0 { + res += "," + } + res += fmt.Sprintf("'%s'", a) + } + return res +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..140600d --- /dev/null +++ b/main.go @@ -0,0 +1,11 @@ +/* +Copyright © 2025 NAME HERE + +*/ +package main + +import "netcli/cmd" + +func main() { + cmd.Execute() +}