YaH3C is a H3c authentication client for SYSU east campus.
- Linux Platform
- Python2 (Python3 is not supported)
You should have git installed first, if not:
# Ubuntui/Debian users
sudo apt-get install git
# ArchLinux users
sudo pacman -S gitThen use the following bash scripts to install:
git clone git://github.com/humiaozuzu/YaH3C.git
cd YaH3C
make
sudo make installFor Arch users, be sure to use python2
You must run the program with root privilege:
$ sudo yah3cUse dhcpcd/dhclients or other network management tools(NetworkManager/wicd) to obtain IP address
# dhcpcd as an example
$ sudo dhcpcd eth0All users logging info and plugins are stored in the folder ~/.yah3c/
~/yah3c/
├── plugins # plugins folder
│ ├── auto_dhcp.py
│ ├── __init__.py
│ ├── notify.py
│ ├── plugin_template.py
│ └── test.py
└── users.conf # storing all users' logging info
A user's logging info is organized in the following format in users.conf:
[account] # your net ID
password = 123456 # password for your net ID
dev = eth0 # Ethernet card you use for authentication
You can refer to ~/.yah3c/plugins/plugin_template.py to known how to write a plugin for YaH3C.
This plugin will use python-notify to indicate the user when he is
online/offline.
You may meet with following error message when logging in, and the notify won't show up:
No protocol specified\nAutolaunch error: X11 initialization failed.\nThere are both ways to solve the problem:
- excute
xhost +local:rootor add it to your.bash_profileonce and for all. - Add the following line to
sudoersfile(usingvisudo):
Defaults env_keep += "HOME"This plugin will use dhcpcd to allocate for ip adress after you have
successfully logged in.
Authenticate successfully:
Authenticate failed:
Ver 0.2
- complete refactory
- plugins support
Ver 0.01
- Initial commit
- Windows platform support
- Command line argument support
- Web UI

