{"id":19785820,"url":"https://github.com/razorsedge/puppet-openlldp","last_synced_at":"2026-03-07T22:31:15.663Z","repository":{"id":5922902,"uuid":"7142555","full_name":"razorsedge/puppet-openlldp","owner":"razorsedge","description":"Puppet module to install Open-LLDP.","archived":false,"fork":false,"pushed_at":"2021-07-09T08:21:18.000Z","size":72,"stargazers_count":6,"open_issues_count":8,"forks_count":11,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-12T23:17:59.618Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://forge.puppetlabs.com/razorsedge/openlldp","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/razorsedge.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-12-13T04:29:22.000Z","updated_at":"2017-10-17T19:12:11.000Z","dependencies_parsed_at":"2022-09-10T21:30:16.980Z","dependency_job_id":null,"html_url":"https://github.com/razorsedge/puppet-openlldp","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/razorsedge/puppet-openlldp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/razorsedge%2Fpuppet-openlldp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/razorsedge%2Fpuppet-openlldp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/razorsedge%2Fpuppet-openlldp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/razorsedge%2Fpuppet-openlldp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/razorsedge","download_url":"https://codeload.github.com/razorsedge/puppet-openlldp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/razorsedge%2Fpuppet-openlldp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30234482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T06:15:49.160Z","updated_at":"2026-03-07T22:31:15.615Z","avatar_url":"https://github.com/razorsedge.png","language":"Ruby","readme":"Puppet Open-LLDP Module\n=======================\n\nmaster branch: [![Build Status](https://secure.travis-ci.org/razorsedge/puppet-openlldp.png?branch=master)](http://travis-ci.org/razorsedge/puppet-openlldp)\ndevelop branch: [![Build Status](https://secure.travis-ci.org/razorsedge/puppet-openlldp.png?branch=develop)](http://travis-ci.org/razorsedge/puppet-openlldp)\n\nIntroduction\n------------\n\nThis module installs [Open-LLDP](http://www.open-lldp.org/).  lldpad (LLDP Agent Daemon) is a GPL licensed implementation of the Link Layer Discovery Protocol for Linux.\n\nActions:\n\n* Installs Open-LLDP (lldpad).\n* Starts lldpad.\n* Provides LLDP neighbor facts via facter (requires lldpad running and configured to at least receive LLDP frames on each Ethernet interface).\n* Configures lldpad to receive and/or transmit LLDP frames via the included lldptool.\n* Configures lldpad to transmit LLDP TLVs.\n\nOS Support:\n\n* RedHat family - tested on CentOS 6.3\n* SuSE family   - presently unsupported (patches welcome)\n* Debian family - presently unsupported (patches welcome)\n\nClass documentation is available via puppetdoc.\n\nExamples\n--------\n\n```puppet\nclass { 'openlldp': }\n\n# Configure lldpad to receive and transmit LLDP frames on the specific interface.\nopenlldp::config::lldp { 'eth0':\n  adminstatus =\u003e 'rxtx',\n}\n\n# Configure lldpad to transmit Basic LLDP TLVs.\n# openlldp::config::lldp adminstatus has to be tx or rxtx for these to transmit.\nopenlldp::config::tlv { 'eth0':\n  portDesc =\u003e 'yes',\n  sysName  =\u003e 'yes',\n  sysDesc  =\u003e 'yes',\n  sysCap   =\u003e 'yes',\n  mngAddr  =\u003e 'yes',\n}\n```\n\nNotes\n-----\n\n* Open-LLDP talks about applying configurations globally by not specifying \"-i ethX\" to lldptool. This has not worked with the versions tested (0.9.43), thus a global configuration mode has not been built into the Puppet module.\n* PVID TLV is not suported as a keyword with the versions tested (0.9.43), thus the code uses numerical values for all TLVs.\n\nIssues\n------\n\n* None\n\nTODO\n----\n\n* None\n\nContributing\n------------\n\nPlease see CONTRIBUTING.md for contribution information.\n\nLicense\n-------\n\nPlease see LICENSE file.\n\nCopyright\n---------\n\nCopyright (C) 2012 Mike Arnold \u003cmike@razorsedge.org\u003e\n\n[razorsedge/puppet-openlldp on GitHub](https://github.com/razorsedge/puppet-openlldp)\n\n[razorsedge/openlldp on Puppet Forge](http://forge.puppetlabs.com/razorsedge/openlldp)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frazorsedge%2Fpuppet-openlldp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frazorsedge%2Fpuppet-openlldp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frazorsedge%2Fpuppet-openlldp/lists"}