%+header%>
<%:Hello World%>
<%
local handle = io.popen("uci get myvpn.@myvpn[0].server")
local server = handle:read("*a")
handle:close()
local handle = io.popen("ip a|grep -E 'toglobal|tochina'|grep inet|awk '{print $2}'")
local localip = handle:read("*a")
handle:close()
local handle = io.popen("uci get myvpn.@myvpn[0].password")
local password = handle:read("*a")
handle:close()
%>
Connect to the world using VPN nodes : <%=server%> by <%=localip%>
<%+footer%>