* new oui importer using IEEE csv for MA-L+M+S * schema update for new vendor table * change vendor to manufacturer because Device has a vendor field * remove oui from manuf table, and update node oui after manuf update * faster way to bulk update node oui * switch from using oui table to manufacturer table for vendor lookup * some other oui cleanup * faster/scalable way to join a macaddr to manuf table * remove device.oui support * update node oui in bulk at end of macsuck run * correct literal sql instead of bind * more efficient to get oui base for each mac * comment better the base lookup in macsuck
		
			
				
	
	
		
			27 lines
		
	
	
		
			661 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			661 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| [% USE CSV -%]
 | |
| [% IF opt %]
 | |
|   [% CSV.dump(['MAC' 'Company' 'Device' 'Port']) %]
 | |
| 
 | |
|   [% FOREACH row IN results %]
 | |
|     [% mylist = [] %]
 | |
|     [% device = row.device.dns || row.device.name || row.switch %]
 | |
|     [% FOREACH col IN [ row.mac.upper row.manufacturer.company device row.port ] %]
 | |
|       [% mylist.push(col) %]
 | |
|     [% END %]
 | |
|     [% CSV.dump(mylist) %]
 | |
| 
 | |
|   [% END %]
 | |
| [% ELSE %]
 | |
|   [% CSV.dump(['Vendor' 'Count']) %]
 | |
| 
 | |
|   [% FOREACH row IN results %]
 | |
|     [% mylist = [] %]
 | |
|     [% vendor = row.vendor || '(Unknown Vendor)' %]
 | |
|     [% FOREACH col IN [ vendor row.count ] %]
 | |
|       [% mylist.push(col) %]
 | |
|     [% END %]
 | |
|     [% CSV.dump(mylist) %]
 | |
| 
 | |
|   [% END %]
 | |
| [% END %]
 |