No longer use dns as a key into devices; cope with dupe dns
This commit is contained in:
		| @@ -9,12 +9,13 @@ | ||||
|       <th>OS Version</th> | ||||
|       <th>Management IP</th> | ||||
|       <th>Serial</th> | ||||
|       <th>Last Discovered</th> | ||||
|     </tr> | ||||
|   </thead> | ||||
|   </tbody> | ||||
|     [% WHILE (row = results.next) %] | ||||
|     <tr> | ||||
|       <td><a href="[% uri_for('/device') %]?q=[% row.dns || row.ip | uri %]">[% row.dns || row.ip | html_entity %]</a></td> | ||||
|       <td><a href="[% uri_for('/device') %]?q=[% row.ip | uri %]">[% row.dns || row.ip | html_entity %]</a></td> | ||||
|       <td>[% row.contact | html_entity %]</td> | ||||
|       <td>[% row.location | html_entity %]</td> | ||||
|       <td>[% row.name | html_entity %]</td> | ||||
| @@ -22,6 +23,7 @@ | ||||
|       <td>[% row.os_ver | html_entity %]</td> | ||||
|       <td>[% row.ip | html_entity %]</td> | ||||
|       <td>[% row.serial | html_entity %]</td> | ||||
|       <td>[% row.last_discover_stamp | html_entity %]</td> | ||||
|     </tr> | ||||
|     [% END %] | ||||
|   </tbody> | ||||
|   | ||||
| @@ -40,7 +40,7 @@ | ||||
|       [% END %] | ||||
|       <td>Switch Port</td> | ||||
|       <td><a class="nd_linkcell" | ||||
|           href="[% device_ports %]&q=[% node.device.dns || node.switch | uri %]&f=[% node.port | uri %]&c_nodes=on&c_neighbors=on"> | ||||
|           href="[% device_ports %]&q=[% node.switch | uri %]&f=[% node.port | uri %]&c_nodes=on&c_neighbors=on"> | ||||
|           [% node.switch | html_entity %] - [% node.port | html_entity %]</a> | ||||
|         [% ' <i class="icon-book text-warning"></i> ' IF NOT node.active %] | ||||
|         [% IF node.device.dns AND node.device_port AND node.device_port.name %] | ||||
|   | ||||
| @@ -70,7 +70,7 @@ | ||||
|       [% END %] | ||||
|       <td>Switch Port</td> | ||||
|       <td><a class="nd_linkcell" | ||||
|             href="[% device_ports %]&q=[% node.device.dns || node.switch | uri %]&f=[% node.port | uri %]&c_nodes=on&c_neighbors=on"> | ||||
|             href="[% device_ports %]&q=[% node.switch | uri %]&f=[% node.port | uri %]&c_nodes=on&c_neighbors=on"> | ||||
|             [% node.switch | html_entity %] - [% node.port | html_entity %]</a> | ||||
|         [% ' <i class="icon-book text-warning"></i> ' IF NOT node.active %] | ||||
|         [% IF node.device.dns AND node.device_port AND node.device_port.name %] | ||||
| @@ -105,7 +105,7 @@ | ||||
|       [% END %] | ||||
|       <td>Switch Port</td> | ||||
|       <td><a class="nd_linkcell" | ||||
|             href="[% device_ports %]&q=[% port.device.dns || port.ip | uri %]&f=[% port.port | uri %]&c_mac=on&c_nodes=on&c_neighbors=on"> | ||||
|             href="[% device_ports %]&q=[% port.ip | uri %]&f=[% port.port | uri %]&c_mac=on&c_nodes=on&c_neighbors=on"> | ||||
|             [% port.ip | html_entity %] - [% port.descr | html_entity %]</a> | ||||
|         [% IF port.device.dns AND port.name %] | ||||
|           ([% port.device.dns | html_entity %] - [% port.name | html_entity %]) | ||||
|   | ||||
| @@ -11,7 +11,7 @@ | ||||
|     [% WHILE (row = results.next) %] | ||||
|     <tr> | ||||
|       <td>[% row.name | html_entity %]</td> | ||||
|       <td><a href="[% device_ports %]&q=[% row.device.dns || row.ip | uri %]&f=[% row.port | uri %]"> | ||||
|       <td><a href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.port | uri %]"> | ||||
|         [% row.ip | html_entity %] [ [% row.port | html_entity %] ]</a> | ||||
|         [% ' (' _ row.device.dns _ ')' IF row.device.dns %] | ||||
|       </td> | ||||
|   | ||||
| @@ -13,17 +13,17 @@ | ||||
|     [% WHILE (row = results.next) %] | ||||
|     <tr> | ||||
|       <td><a class="nd_linkcell nd_stealth-link" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vlan.vlan | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vlan.vlan | html_entity %]</a></td> | ||||
|       <td><a class="nd_linkcell" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.dns || row.ip | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.dns || row.ip | html_entity %]</a></td> | ||||
|       <td><a class="nd_linkcell nd_stealth-link" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vlan.description | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vlan.description | html_entity %]</a></td> | ||||
|       <td><a class="nd_linkcell nd_stealth-link" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.model | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.model | html_entity %]</a></td> | ||||
|       <td><a class="nd_linkcell nd_stealth-link" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.os | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.os | html_entity %]</a></td> | ||||
|       <td><a class="nd_linkcell nd_stealth-link" | ||||
|         href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vendor | html_entity %]</a></td> | ||||
|         href="[% device_ports %]&q=[% row.ip | uri %]&f=[% row.vlan.vlan | uri %]">[% row.vendor | html_entity %]</a></td> | ||||
|     </tr> | ||||
|     [% END %] | ||||
|   </tbody> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user