gather lldp remote capabilities and info

This commit is contained in:
Oliver Gorwits
2018-02-28 21:41:34 +00:00
parent d13a4489df
commit 94da566184
3 changed files with 50 additions and 17 deletions

View File

@@ -13,6 +13,18 @@ __PACKAGE__->add_columns(
{ data_type => "text", is_nullable => 0 },
"error_disable_cause",
{ data_type => "text", is_nullable => 1 },
"remote_is_wap",
{ data_type => "boolean", is_nullable => 1 },
"remote_is_phone",
{ data_type => "boolean", is_nullable => 1 },
"remote_vendor",
{ data_type => "text", is_nullable => 1 },
"remote_os_ver",
{ data_type => "text", is_nullable => 1 },
"remote_model",
{ data_type => "text", is_nullable => 1 },
"remote_serial",
{ data_type => "text", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("port", "ip");