mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Mikrotik vlans discovery, v2 * styleci cleanup * added Routeros entry in mkdocs.yml * fixed typo in mkdocs.yml * Better Vlan Eloquent Model * Missed one * Use new SnmpQuery code Co-authored-by: Tony Murray <murraytony@gmail.com>
18 lines
305 B
PHP
18 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Vlan extends DeviceRelatedModel
|
|
{
|
|
protected $primaryKey = 'vlan_id';
|
|
public $timestamps = false;
|
|
protected $fillable = [
|
|
'device_id',
|
|
'vlan_vlan',
|
|
'vlan_domain',
|
|
'vlan_name',
|
|
'vlan_type',
|
|
'vlan_mtu',
|
|
];
|
|
}
|