{"id":14984477,"url":"https://github.com/nn708/ansible-openwrt","last_synced_at":"2025-09-07T01:07:29.489Z","repository":{"id":64478031,"uuid":"372172932","full_name":"NN708/ansible-openwrt","owner":"NN708","description":"Ansible collection to configure your OpenWrt devices more quickly and automatically (without Python)","archived":false,"fork":false,"pushed_at":"2024-01-04T03:02:31.000Z","size":69,"stargazers_count":60,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-24T18:11:25.526Z","etag":null,"topics":["access-point","ansible","ansible-collection","ansible-role","automation","lede","network-automation","networking","openwrt","wifi","wireless"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/nn708/openwrt","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NN708.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-30T09:26:02.000Z","updated_at":"2025-03-20T13:47:21.000Z","dependencies_parsed_at":"2024-01-03T07:24:34.996Z","dependency_job_id":"c7d02030-d023-4bbe-871a-4d993b45fc10","html_url":"https://github.com/NN708/ansible-openwrt","commit_stats":{"total_commits":33,"total_committers":3,"mean_commits":11.0,"dds":0.09090909090909094,"last_synced_commit":"64f991cdbd80dc957a2c55a7cb1672e463fb2d85"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NN708%2Fansible-openwrt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NN708%2Fansible-openwrt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NN708%2Fansible-openwrt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NN708%2Fansible-openwrt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NN708","download_url":"https://codeload.github.com/NN708/ansible-openwrt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248290044,"owners_count":21078923,"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","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":["access-point","ansible","ansible-collection","ansible-role","automation","lede","network-automation","networking","openwrt","wifi","wireless"],"created_at":"2024-09-24T14:09:07.906Z","updated_at":"2025-04-10T20:34:19.495Z","avatar_url":"https://github.com/NN708.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ansible Collection for OpenWrt\n\nAnsible collection to configure your OpenWrt devices more quickly and automatically (without Python).\n\n## Installation\n\n1. [Ansible](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html) should be installed on your control node, but nothing needs to be installed on your OpenWrt devices.\n\n2. This collection depends on `gekmihesg.openwrt`. Install it using\n\n    ```\n    ansible-galaxy install gekmihesg.openwrt\n    ```\n\n3. Install this collection using\n\n    ```\n    ansible-galaxy collection install nn708.openwrt\n    ```\n\n## Content\n\nThis collection includes these roles:\n\n+ [nn708.openwrt.ddns](https://github.com/NN708/ansible-openwrt/tree/master/roles/ddns)\n+ [nn708.openwrt.dhcp](https://github.com/NN708/ansible-openwrt/tree/master/roles/dhcp)\n+ [nn708.openwrt.dumb_ap](https://github.com/NN708/ansible-openwrt/tree/master/roles/dumb_ap)\n+ [nn708.openwrt.firewall](https://github.com/NN708/ansible-openwrt/tree/master/roles/firewall)\n+ [nn708.openwrt.network](https://github.com/NN708/ansible-openwrt/tree/master/roles/network)\n+ [nn708.openwrt.system](https://github.com/NN708/ansible-openwrt/tree/master/roles/system)\n+ [nn708.openwrt.wireguard](https://github.com/NN708/ansible-openwrt/tree/master/roles/wireguard)\n+ [nn708.openwrt.wireless](https://github.com/NN708/ansible-openwrt/tree/master/roles/wireless)\n+ [nn708.openwrt.wireless_enterprise](https://github.com/NN708/ansible-openwrt/tree/master/roles/wireless_enterprise)\n\n## Example Playbook\n\nThis is a minimal working example to set up a basic wireless router:\n\n```yaml\n---\n- hosts: openwrt\n\n  vars:\n    ansible_user: root\n    openwrt_network_wan_proto: pppoe\n    openwrt_network_wan_username: my-user\n    openwrt_network_wan_password: my-passwd\n    openwrt_system_zonename: Asia/Shanghai\n    openwrt_wireless_country: CN\n    openwrt_wireless_ssid: my-wifi\n    openwrt_wireless_encryption: psk2\n    openwrt_wireless_key: my-passwd\n\n  roles:\n    - nn708.openwrt.network\n    - nn708.openwrt.system\n    - nn708.openwrt.wireless\n```\n\n\u003e Because of using `gekmihesg.openwrt`, `openwrt` should be used as the group name of hosts. See [gekmihesg/ansible-openwrt#example-playbook](https://github.com/gekmihesg/ansible-openwrt#example-playbook) for example inventory file.\n\n## License\n\nLicensed under [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.txt).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnn708%2Fansible-openwrt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnn708%2Fansible-openwrt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnn708%2Fansible-openwrt/lists"}