{"id":15163138,"url":"https://github.com/fpletz/puppet-radvd","last_synced_at":"2025-12-11T21:38:05.517Z","repository":{"id":3503493,"uuid":"4560509","full_name":"fpletz/puppet-radvd","owner":"fpletz","description":"Simple radvd module for Puppet ","archived":false,"fork":false,"pushed_at":"2025-02-09T18:48:13.000Z","size":21,"stargazers_count":4,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-18T07:03:03.846Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fpletz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-06-05T13:44:12.000Z","updated_at":"2025-02-09T18:55:00.000Z","dependencies_parsed_at":"2022-09-08T08:11:38.225Z","dependency_job_id":null,"html_url":"https://github.com/fpletz/puppet-radvd","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/fpletz/puppet-radvd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpletz%2Fpuppet-radvd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpletz%2Fpuppet-radvd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpletz%2Fpuppet-radvd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpletz%2Fpuppet-radvd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fpletz","download_url":"https://codeload.github.com/fpletz/puppet-radvd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fpletz%2Fpuppet-radvd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27670522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-11T02:00:11.302Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-09-27T02:04:14.008Z","updated_at":"2025-12-11T21:38:05.496Z","avatar_url":"https://github.com/fpletz.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple radvd module for Puppet\n\nThis is a simple module for installing and configuring a radvd\ndaemon to announce IPv6 prefixes on an interface. It should work on any\nUnix-like operating system that is supported by both radvd and puppet.\n\n## Current Status\n\nAs of now, all definitions and options that are available in radvd's\nconfig file should be supported. Please file a bug if you encounter\nproblems.\n\n## Simple Example\n\n```puppet\n    class {'radvd':\n      interfaces =\u003e {\n        'eth0' =\u003e {\n          options  =\u003e {\n            'AdvSendAdvert' =\u003e 'on',\n          },\n          prefixes =\u003e {\n            '2001:0DB8:2342:cafe::/64' =\u003e {},\n          },\n        },\n      },\n    }\n```\n\nOr\n\n```puppet\n    include 'radvd'\n    radvd::interface { 'eth0':\n      options  =\u003e {\n        'AdvSendAdvert' =\u003e 'on',\n      },\n      prefixes =\u003e {\n        '2001:0DB8:2342:cafe::/64' =\u003e {},\n      },\n    }\n```\n\n## Advanced Example\n\n```puppet\n    radvd::interface { 'eth1':\n      options =\u003e {\n        'AdvSendAdvert'     =\u003e 'on',\n        'MinRtrAdvInterval' =\u003e 10,\n        'MaxRtrAdvInterval' =\u003e 30,\n      },\n      prefixes =\u003e {\n        '2001:0DB8:2342:cafe::/64' =\u003e {\n          'AdvOnLink'     =\u003e 'on',\n          'AdvAutonomous' =\u003e 'on',\n        },\n      },\n      rasourceaddresses =\u003e [\n        'FE80::cafe:1',\n      ],\n      rdnss =\u003e {\n        '2001:0DB8:2342:cafe::1' =\u003e {\n          'AdvRDNSSLifetime' =\u003e 30,\n        },\n      },\n      dnssl =\u003e {\n        'branch.example.com example.com' =\u003e {\n          'AdvDNSSLLifetime' =\u003e 30,\n        },\n      },\n      routes =\u003e {\n        '2001:0DB8:2342:ccc::/64' =\u003e {},\n      },\n      clients =\u003e [\n        'fe80::21f:16ff:fe06:3aab',\n        'fe80::21d:72ff:fe96:aaff',\n      ],\n    }\n```\n\n## TODO\n\n * Code Documentation\n * Spec Tests\n\n## Contributions welcome!\n\nPlease contribute your code as pull requests if you add or fix code.\nI will try to merge or comment as soon as possible. Thanks! :)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffpletz%2Fpuppet-radvd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffpletz%2Fpuppet-radvd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffpletz%2Fpuppet-radvd/lists"}