Add Ports administratively disabled report

This commit is contained in:
Eric A. Miller
2013-11-05 23:01:30 -05:00
parent 15fb4030a6
commit 2334991782
5 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
[% USE CSV -%]
[% CSV.dump([ 'Device' 'Port' 'Port Description' 'Admin Status' ]) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% mylist.push(row.dns || row.name || row.ip) %]
[% mylist.push(row.port) %]
[% mylist.push(row.description) %]
[% mylist.push(row.up_admin) %]
[% CSV.dump(mylist) %]
[% END %]