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
|
<% local view, viewlibrary, page_info, session = ...
require("viewfunctions")
%>
<% showoption = function(option)
if option.errtxt or option.value ~= "" then %>
<TR><TD WIDTH='120px' STYLE='font-weight:bold;border:none;'><%= html.html_escape(option.label) %></TD>
<TD STYLE='border:none;'<% if option.errtxt then io.write("class='error'") end %>>
<%= string.gsub(html.html_escape(tostring(option.value)), "\n", "<BR>") %>
<% if option.errtxt then io.write("<BR>"..html.html_escape(option.errtxt)) end %>
</TD></TR>
<% end %>
<% end %>
<% displaycommandresults({"update", "delete", "ifup", "ifdown", "restart"}, session) %>
<% if viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("status")
end %>
<H1>Configured interfaces</H1>
<DL>
<% for i,entry in ipairs(view.value) do
local interface = entry.value %>
<DT><IMG SRC='<%= html.html_escape(page_info.wwwprefix..page_info.staticdir) %>/tango/16x16/devices/network-wired.png' width='16' height='16'> <%= html.html_escape(interface.name.value) %></DT><DD>
<TABLE STYLE='margin-bottom:10px'>
<%
showoption(interface.family)
if interface.method then showoption(interface.method) end
for name,option in pairs(interface) do
if name~="name" and name~="family" and name~="method" then
showoption(option)
end
end %>
<TR>
<% if viewlibrary.check_permission("update") then %>
<A HREF='update?name=<%= html.html_escape(interface.name.value) %>&redir=read'>Edit </A>
<% end
if viewlibrary.check_permission("delete") then %>
<A HREF='delete?name=<%= html.html_escape(interface.name.value) %>&submit=true&redir=read'>Delete </A>
<% end
if viewlibrary.check_permission("ifup") then %>
<A HREF='ifup?name=<%= html.html_escape(interface.name.value) %>&submit=true&redir=read'>ifup </A>
<% end
if viewlibrary.check_permission("ifdown") then %>
<A HREF='ifdown?name=<%= html.html_escape(interface.name.value) %>&submit=true&redir=read'>ifdown </A>
<% end %>
</TR>
</TABLE>
<% end %>
</DD>
</DL>
<H1>Restart Networking</H1>
<DL>
<P class="error">WARNING!!! Restarting networking may cause the ACF web interface to stop functioning. Try refreshing this page after restarting. If that fails, you may have to use terminal access to recover.</P>
<DT>Restart Networking</DT>
<DD><form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/restart?redir=read&submit=true") %>"><input class="submit" type="submit" name="submit" value="Restart"></form></DD>
</DL>
|