Changes for page V-NET

Last modified by Leo Wei on 2022/11/14 08:16

From version 3.1
edited by Leo Wei
on 2022/07/14 00:05
Change comment: Deleted image "image-20220607142542-1.jpeg"
To version 10.1
edited by Stone Wu
on 2022/07/25 11:38
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -V-Net
1 +V-NET Guide
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.admin
1 +XWiki.Stone
Content
... ... @@ -1,0 +1,185 @@
1 +(% class="lead" %)
2 +V-BOX Web(V-NET) visit website:
3 +
4 +* **China server:** [[http:~~/~~/v-box.net>>url:http://v-box.net/]]
5 +* **Europe server:** [[https:~~/~~/eu.v-box.net>>url:http://eu.v-box.net/]]
6 +* **Asean server: **[[https:~~/~~/asean.v-box.net>>url:http://asean.v-box.net/]]
7 +
8 += Demo =
9 +
10 += Video =
11 +
12 +{{velocity output="false"}}
13 +#set ($docextras = [])
14 +
15 +#set ($videoCards = [
16 +{
17 + 'title': $services.localization.render('WECON V-NET Basic Function: 1 Software Download&Install'),
18 + 'topics': [
19 + $services.localization.render('language:english'),
20 + $services.localization.render('How to get Wecon V-NET software')
21 + ],
22 + 'url': 'https://www.youtube.com/embed/7xzyyRURDfE',
23 + 'duration': '3 min'
24 +},
25 +{
26 + 'title': $services.localization.render('WECON V-NET Basic Function: 2 Account Registration&V-Box Binding'),
27 + 'topics': [
28 + $services.localization.render('language:english'),
29 + $services.localization.render('How to register a V-NET account,How to bind the V-BOX')
30 + ],
31 + 'url': 'https://www.youtube.com/embed/wKs1ZlRtMNM',
32 + 'duration': '3 min'
33 +},
34 +{
35 + 'title': $services.localization.render('WECON V-NET Basic Function: 3 Real time Data&Historical Data'),
36 + 'topics': [
37 + $services.localization.render('language:english'),
38 + $services.localization.render('add real-time points,add historical points,record trigger type')
39 + ],
40 + 'url': 'https://www.youtube.com/embed/7CPDrRb94BA',
41 + 'duration': '7 min'
42 +},
43 +{
44 + 'title': $services.localization.render('WECON V-NET Basic Function: 4 Alarm Function'),
45 + 'topics': [
46 + $services.localization.render('language:english'),
47 + $services.localization.render('How to use alarm function,add alarm monitoring point,alarm type')
48 + ],
49 + 'url': 'https://www.youtube.com/embed/ueyAIdWyQdU',
50 + 'duration': '6 min'
51 +},
52 +{
53 + 'title': $services.localization.render('WECON V-NET Basic Function: 5 Lua Script Function'),
54 + 'topics': [
55 + $services.localization.render('language:english'),
56 + $services.localization.render('How to use Lua Script function?')
57 + ],
58 + 'url': 'https://www.youtube.com/embed/6pwo14E0OeQ',
59 + 'duration': '5 min'
60 +},
61 +{
62 + 'title': $services.localization.render('WECON V-NET Basic Function: 6 Configuration'),
63 + 'topics': [
64 + $services.localization.render('language:english'),
65 + $services.localization.render('Introduction to the configuration interface')
66 + ],
67 + 'url': 'https://www.youtube.com/embed/PTIHcpFRPH0',
68 + 'duration': '5 min'
69 +},
70 +{
71 + 'title': $services.localization.render('WECON V-NET Basic Function: 7 Pass-through'),
72 + 'topics': [
73 + $services.localization.render('language:english'),
74 + $services.localization.render('Introduction to the Pass-through, serial passthrough, VPN passthrough')
75 + ],
76 + 'url': 'https://www.youtube.com/embed/vLDu41_Wg30?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN',
77 + 'duration': '8 min'
78 +},
79 +{
80 + 'title': $services.localization.render('WECON V-NET Special Function: 1 Email&Status Push'),
81 + 'topics': [
82 + $services.localization.render('language:english'),
83 + $services.localization.render('How to set email? How to use status push?')
84 + ],
85 + 'url': 'https://www.youtube.com/embed/3SO4tu8t0CM',
86 + 'duration': '6 min'
87 +},
88 +{
89 + 'title': $services.localization.render('WECON V-NET Special Function: 2 Template Function'),
90 + 'topics': [
91 + $services.localization.render('language:english'),
92 + $services.localization.render('How to use template function?')
93 + ],
94 + 'url': 'https://www.youtube.com/embed/SDRva-dPkzY?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN',
95 + 'duration': '7 min'
96 +}
97 +])
98 +
99 +#macro (helpVideoCard $data)
100 + <div class="videoCard">
101 + <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe>
102 + <div class="videoCard-body">
103 + <div class="videoCard-title">
104 + $escapetool.xml($data.title)
105 + </div>
106 + <ul>
107 + #foreach ($topic in $data.topics)
108 + <li>$topic</li>
109 + #end
110 + </ul>
111 + </div>
112 + <div class="videoCard-footer">
113 + $services.icon.renderHTML('play')
114 + <a href="$data.url">$services.localization.render('help.videos.watch')</a>
115 + <span class="videoCard-duration">
116 + $escapetool.xml($data.duration)
117 + </span>
118 + </div>
119 + </div>
120 +#end
121 +{{/velocity}}
122 +
123 +{{velocity}}
124 +{{html clean="false"}}
125 +#set ($discard = $xwiki.ssx.use('Help.Videos.WebHome'))
126 +<div class="row">
127 + #foreach ($card in $videoCards)
128 + ## See http://getbootstrap.com/css/#grid-responsive-resets .
129 + #if ($foreach.index > 0 && $foreach.index % 2 == 0)
130 + <div class="clearfix visible-sm-block "></div>
131 + #end
132 + #if ($foreach.index > 0 && $foreach.index % 3 == 0)
133 + <div class="clearfix visible-md-block visible-lg-block"></div>
134 + #end
135 + <div class="col-xs-12 col-sm-6 col-md-4">
136 + #helpVideoCard($card)
137 + </div>
138 + #end
139 +</div>
140 +{{/html}}
141 +(% class="lead" %)
142 +[[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]]
143 +{{/velocity}}
144 +
145 += FAQ =
146 +
147 += Download =
148 +
149 +== Software ==
150 +
151 +**V-BOX PC software 20220628**
152 +
153 +* Configure VBOX connect with VNET and pass through and network configuration
154 +* [[Download link>>url:https://ftp.we-con.com.cn/Download/Software/V-NET%20Access20220628.zip]]
155 +
156 +**V-BOX Android APP 2.2.1**
157 +
158 +* Monitor V-NET and cloud scada by android APP
159 +* [[Download link>>url:https://ftp.we-con.com.cn/Download/Software/V-NET%20APP-2.2.1.zip]]
160 +
161 +**WVPN tool 20220221**
162 +
163 +* [[Download link>>url:https://ftp.we-con.com.cn/Download/WIKI/V-BOX/Software/WVpn_PCclient-0.3.21.22022101.zip]]
164 +
165 +**OPC tool 20211222**
166 +
167 +* [[Download link>>url:https://ftp.we-con.com.cn/Download/WIKI/V-BOX/Software/V-BOX%20OPCTool%20setup20211222.zip]]
168 +
169 +**Cloud tool 20220628**
170 +
171 +* [[Download link>>url:https://drive.google.com/file/d/1NyGWtjgtPxvMQI08l6Y59it7Jo5vniKU/view?usp=sharing]]
172 +
173 +(% class="lead" %)
174 +Manual
175 +
176 +(% class="lead" %)
177 +Web link
178 +
179 +V-BOX Web(V-NET) visit website:
180 +
181 +**Chinese server:** [[http:~~/~~/v-box.net>>url:http://v-box.net/]]
182 +
183 +**Europe server:** [[https:~~/~~/eu.v-box.net>>url:http://eu.v-box.net/]]
184 +
185 +**Asean server: **[[https:~~/~~/asean.v-box.net>>url:http://asean.v-box.net/]]