东北大学校园网登录脚本
服务器需要在命令行中进行登录,在 github 中找到 neucn/ipgw 这个项目,但是多次尝试总是无法登录,故而基于该项目自行构建了一个简易版本。
学习go工程开发,在v0.2.0
中,将项目基于cobra
命令行工具进行了重构。
以下安装过程以 Ubuntu 为例,其他系统请使用对应版本。
- 从release 页面获取最新版本压缩文件
- 解压缩,并赋予执行权限
- 部署至
/usr/local/bin
目录
## example for ubuntu
# download
wget https://github.com/DoraTiger/NEU_IPGW/releases/download/v0.1.0/NEU_IPGW-linux-amd64.tar.gz
# unzip and grant
tar -zxf ./ipgw-linux-amd64.zip
chmod +x ./NEU_IPGW
# move
sudo cp ./NEU_IPGW /usr/local/bin/
- 准备 go 语言环境,可参考该博客的 2.3 节。
- 编译项目(考虑到服务器本身无网络的情况,提供了vendor目录,支持离线编译,如不需要,请删除makefile中的
-mod=vendor
) - 部署至
/usr/local/bin
目录
## example for ubuntu
# download
git clone https://github.com/DoraTiger/NEU_IPGW.git
cd NEU_IPGW
# build
make all
# grant
chmod +x ./build/linux-amd64/NEU_IPGW
# move
sudo cp ./build/linux-amd64/NEU_IPGW /usr/local/bin/
- 登录校园网
NEU_IPGW login -u username -p password
- 退出登录
NEU_IPGW logout