Refactor FDB Tables to Laravel (#9669)

* Refactor FDB Tables to Laravel
Hopefully much better performance with large tables.
Better dns resolution (limit to 4 IPs tried per MAC)

* update style

* de-duplicate IPs

* fixed column width for mac and vlan

* Make DNS column visibility control whether or not we send the dns query.
Hide that column by default.
This commit is contained in:
Tony Murray
2019-01-20 08:43:36 -06:00
committed by GitHub
parent e2c4fa971e
commit ef41c9fd7d
14 changed files with 379 additions and 178 deletions

View File

@@ -62,9 +62,10 @@ Route::group(['middleware' => ['auth', '2fa'], 'guard' => 'auth'], function () {
Route::group(['prefix' => 'table', 'namespace' => 'Table'], function () {
Route::post('customers', 'CustomersController');
Route::post('eventlog', 'EventlogController');
Route::post('fdb-tables', 'FdbTablesController');
Route::post('graylog', 'GraylogController');
Route::post('location', 'LocationController');
Route::post('port-nac', 'PortNacController');
Route::post('graylog', 'GraylogController');
Route::post('syslog', 'SyslogController');
});