1. 程式人生 > >命令列(自動)登入校園網

命令列(自動)登入校園網

第一章

用 curl

sudo apt-get install curl
  • 老閘道器登入(走校園網流量): 看網頁原始碼的這裡:1038211 emmm……取的啥破名兒…… 顯然DDDDD那裡寫學號,upass寫密碼,登入按鈕是0MKKey。 那麼:
curl 'http://10.3.8.211' --data "DDDDD=2018110453&upass=password&0MKKey="
  • 新閘道器登入: 同理:ngw 這名字好聽多了……user那裡寫學號,pass那裡寫密碼,line線路預設是校園網,CUC-BRAS是聯通,CMCC-BRAS是移動,CT-BRAS是電信。 比如登入聯通線路:
curl 'http://10.3.8.217/login' --data 'user=2018110453&pass=password&line=CUC-BRAS'
或者,這倆一樣的:
curl 'http://ngw.bupt.edu.cn/login' --data 'user=2018110453&pass=password&line=CUC-BRAS'
  • 老網關注銷登入:
curl http://10.3.8.211/F.htm
  • 新網關注銷登入:
curl -L http://10.3.8.217/logout
  • 開機自啟 在 /etc/profile.d裡寫個執行這命令的指令碼就行了。