Embedded SRUN3000 Portal Client for SDU-Qingdao
如有未列出的适用院校、科研单位或其他单位,请通过 issue 补充
- 山东大学(济南无线网、青岛有线网、青岛无线网)
- 中科院计算所(有线网、无线网)
Ver 1.1 is once suitable for Shandong University, Qingdao Campus, up to 2018. No longer supported.
Ver 2.0+ is suitable for Shandong University, Qingdao Campus, since March 2019.
Copyright © 2018-2022 Sad Pencil
MIT License
Static builds are available here.
You can also compile by your self.
Rename the executable to sdunetd
.
Run the program without any parameters and it will guide you to create a configuration file.
./sdunetd
- Copy the executable to
/usr/local/bin
, and rename it tosdunetd
chmod +x /usr/local/bin/sdunetd
- Create a configuration file at
/etc/sdunetd/config.json
vi /etc/systemd/system/sdunetd.service
[Unit]
Description=sdunetd
After=network.target
Wants=network.target
[Service]
Type=simple
PrivateTmp=true
ExecStart=/usr/local/bin/sdunetd -c /etc/sdunetd/config.json -m
Restart=always
[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable sdunetd
systemctl start sdunetd
- Copy the executable to
/usr/local/bin
, and rename it tosdunetd
-
Note: You MUST choose proper builds according to
/proc/cpuinfo
. -
Note: It might take a few minutes to copy a large file to the router.
chmod +x /usr/local/bin/sdunetd
- Create a configuration file at
/etc/sdunetd/config.json
touch /etc/init.d/sdunetd
chmod +x /etc/init.d/sdunetd
vi /etc/init.d/sdunetd
#!/bin/sh /etc/rc.common
START=60
start() {
(/usr/local/bin/sdunetd -c /etc/sdunetd/config.json -m -o - 2>&1 | logger -t sdunetd) &
}
stop() {
killall sdunetd
}
/etc/init.d/sdunetd enable
/etc/init.d/sdunetd start
Although it is okay to create a shortcut at startup
folder, it is better to create a service. srvany
is a 32-bit
program provided by Microsoft to let any program become a service, and you can get a 64-bit implementation at
repo birkett/srvany-ng.
Example:
-
Suppose
sdunetd.exe
config.json
andsrvany.exe
are all placed atC:\Program Files\sdunetd
-
Create a service named
sdunetd
sc create "sdunetd" start= auto binPath= "C:\Program Files\sdunetd\srvany.exe"
- Import the following to the registry
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\sdunetd\Parameters]
"Application"="C:\\Program Files\\sdunetd\\srvany.exe"
"AppDirectory"="C:\\Program Files\\sdunetd"
"AppParameters"="-c \"C:\\Program Files\\sdunetd\\config.json\""
We recommend TimothyYe/GoDNS. In the configuration file, set ip_interface
to
your network interface to help GoDNS get the real IPv4 address.
Click here to get detailed help.
However, you can't use GoDNS behind a NAT router because the Internet traffic at SDU-Qingdao is being masqueraded, so that online services can't determine your real IPv4 address.
sdunetd
is able to detect your real IPv4 address at SDU-Qingdao no matter you are under a router or not. So, if you do
need this feature, open an issue at sdunetd so that we can fork a special
version of GoDNS which is suitable for SDU-Qingdao.
Go 1.13 or higher version is required.
This project uses go module. If you live in Mainland China, you might need to configure a proxy like goproxy.cn to execute the following code.
git clone https://github.com/SadPencil/sdunetd
cd sdunetd
make
To build for all supported platform:
make all