-
Notifications
You must be signed in to change notification settings - Fork 1
/
device_log.txt
231 lines (173 loc) · 3.17 KB
/
device_log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
7 104 10.89.168.59 Vss
32 67 10.89.175.119 V
19 40 10.89.250.37 V
81 103 10.89.37.228
[1]
1 换卡
2 换卡
3
4
5 换卡
6
7 换板
8 换卡
9
10
11 换卡
12
13
14
15 换卡
16
17
18
19 换板
20
[2]
21
22
23
24 换卡
25 换板
26 换卡
27 换卡
28
29 换壳
30
[3]
31
32
33
34
35 换卡 V 换卡 ?
36 换卡 V 换卡 (未U)
37
38 换卡 V 换卡
39 换卡 V 换卡
40 换板 cemera V 换板
41 换卡 V 换卡
42
[4]
43
44
45
46 换卡 V 换卡
47
48
49
50 换卡 V 换卡
51
52
53 换卡 V 换卡
54 换卡 V 换卡 和 板
[5]
55
56
57 换卡
58 换卡
59
60
61
62 换卡
63
64
[6]
65 换卡 V 换卡
66
67 换板 V 换板
68
69 加固
70
71 换卡 V 换卡
72
73 换板 V 换板
74 位置 V 位置
75
76
77 换卡 V 换卡
78
79
[8]
88
89 换卡
90
91 换卡 V 换卡 [2] 2018-02-10 14:07:11 log 换板
92
93
94
95
96
97 换卡
98
99
100
101 换卡 V 换卡
102 位置 V 调整位置
103 换板
104 换卡 X
105
106 换卡 V 换卡
107 换卡
——————————————
cat conf.json
——————————————
sudo nano wifi_rebooter.sh
——————————————
#!/bin/bash
# The IP for the server you wish to ping (8.8.8.8 is a public Google DNS server)
SERVER=8.8.8.8
# Only send two pings, sending output to /dev/null
ping -c2 ${SERVER} > /dev/null
# If the return code from ping ($?) is not 0 (meaning there was an error)
if [ $? != 0 ]
then
# Restart the wireless interface
ifdown --force wlan0
ifup wlan0
fi
——————————————
sudo chmod +x wifi_rebooter.sh
——————————————
sudo crontab -e
——————————————
0,30 * * * * /bin/systemctl restart ustone.service
30 6 * * * sh /home/ustone/update.sh > /home/ustone/update.log 2>&1
*/2 * * * * sh /home/ustone/wifi_rebooter.sh > /home/ustone/wifi.log 2>&1
——————————————
sudo systemctl enable wpa_supplicant.service
——————————————
cp /usr/share/zoneinfo/Asia/Hong_Kong /etc/localtime
systemctl stop ustone.service
cd /home/ustone/
rm -rf main.py
rm -rf send_email.py
wget https://raw.githubusercontent.com/syangav/WashingMachine/master/main.py
wget https://raw.githubusercontent.com/syangav/WashingMachine/master/send_email.py
systemctl start ustone.service
——————————————
7 6,18 * * * /sbin/modprobe -r uvcvideo
7 6,18 * * * (/bin/sleep 4s && /sbin/poweroff)
30 6 * * * sh /home/ustone/update.sh > /home/ustone/update.log 2>&1
*/2 * * * * sh /home/ustone/wifi_rebooter.sh > /home/ustone/wifi.log 2>&1
——————————————
*/2 * * * * sh /home/ustone/wifi_rebooter.sh > /home/ustone/wifi.log 2>&1
——————————————
{
"server":"0.0.0.0",
"server_ipv6":"::",
"server_port":443,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"iamnotvpn",
"timeout":120,
"method":"chacha20",
"protocol":"auth_chain_a",
"protocol_param":"",
"obfs":"tls1.2_ticket_auth",
"obfs_param":"",
"redirect": ["*:443#127.0.0.1:8443"],
"dns_ipv6":false,
"fast_open":false,
"workers":1
}
crontab -e: