tunet

2.0.2 • Public • Published

TUNET

TUNET is a nodejs tool to login and logout Tsinghua University Network (tunet).

To use this do as below:

// install from npm
npm install tunet
 
// require tunet package
var tunet = require('tunet');
 
// set login/logout options
var options = {
    name: 'user_name',      // required, 'user_name' and 'user_name@tsinghua' are for access public internet and tunet, respectively
    pwd: 'user_password',   // required, password for tunet account 'user_name'
    ip: '192.168.1.1'       // optional, the ip you want to authenticate, and default is the client ip
}
 
// do login
tunet.login(options.name, options.pwd, options.ip);
// Login is successful.
 
// do logout
tunet.logout(options.name, options.ip);
// Logout is successful.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i tunet

    Weekly Downloads

    0

    Version

    2.0.2

    License

    MIT

    Unpacked Size

    8 kB

    Total Files

    9

    Last publish

    Collaborators

    • yibo-li