{"id":13584666,"url":"https://github.com/opennetadmin/ona","last_synced_at":"2025-04-07T01:32:59.655Z","repository":{"id":2396383,"uuid":"3362983","full_name":"opennetadmin/ona","owner":"opennetadmin","description":"OpenNetAdmin IP Address Management (IPAM) system","archived":false,"fork":false,"pushed_at":"2025-02-01T23:44:54.000Z","size":6929,"stargazers_count":142,"open_issues_count":98,"forks_count":35,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-02-02T00:25:57.032Z","etag":null,"topics":["dcim","dhcp","dns","ipaddresses","ipam","networking","ona"],"latest_commit_sha":null,"homepage":"opennetadmin.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/opennetadmin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING","funding":null,"license":null,"code_of_conduct":"docs/CODE_OF_CONDUCT.md","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":"2012-02-05T23:32:30.000Z","updated_at":"2025-02-01T23:45:00.000Z","dependencies_parsed_at":"2023-07-06T08:33:37.874Z","dependency_job_id":"cd575c9d-c875-4ecf-9b98-482939684ab0","html_url":"https://github.com/opennetadmin/ona","commit_stats":{"total_commits":491,"total_committers":6,"mean_commits":81.83333333333333,"dds":0.03665987780040736,"last_synced_commit":"0ab7fd7c163108e9dd060eb65ec1a2160823ff3f"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opennetadmin%2Fona","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opennetadmin%2Fona/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opennetadmin%2Fona/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opennetadmin%2Fona/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/opennetadmin","download_url":"https://codeload.github.com/opennetadmin/ona/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247578414,"owners_count":20961263,"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":["dcim","dhcp","dns","ipaddresses","ipam","networking","ona"],"created_at":"2024-08-01T15:04:25.836Z","updated_at":"2025-04-07T01:32:54.646Z","avatar_url":"https://github.com/opennetadmin.png","language":"PHP","readme":"OpenNetAdmin\n============\n\nOpenNetAdmin is an IPAM (IP Address Management) tool to track your\nnetwork attributes such as DNS names, IP addresses, Subnets, MAC addresses\njust to name a few.  Through the use of plugins you can add extended it's\nfunctionality.\n\n---\n**Recent Changes**\n\nIt's been too many years since the last official version! This update is to fix a few incompatibilities with newer PHP, MYSQL and OS versions. Fundamentally not much has changed.  For those interested I have been playing with a new [ona-core project](https://github.com/opennetadmin/ona-core) that is the beginnings of a true RESTful API interface. These changes should allow ONA to continue working on newer systems while the new core, and GUI is completed.\n\nThanks for your interest in OpenNetAdmin!\n\n---\n\nEach host or subnet can be tracked via a centralized AJAX enabled web interface\nthat can help reduce errors. A full [CLI interface](https://github.com/opennetadmin/dcm) is available\nas well to use for scripting and bulk work. We hope to provide a useful\nNetwork Management application for managing your IP subnets and hosts.\nStop using spreadsheets to manage your network! Start doing proper IP\naddress management!\n\n![desktop image](https://github.com/opennetadmin/ona/wiki/images/desktop.png)\n\nINSTALL\n-------\n\nSimply download and untar into `/opt/ona` or other directory of your choosing.  Then configure\nyour web server to serve out `/opt/ona/www`.  Open it in your web browser and run the install process.\n\nPlease refer to the [install page on the Github Wiki for more detail](https://github.com/opennetadmin/ona/wiki/Install)\n\nDEVELOPMENT\n-----------\nYou can interact with either Docker or Vagrant. Docker is is the preferred\nmethod at this time.\n\n## Docker\n\nOnce you have cloned the repo you can issue\nThe Dockerfile is intended for development and testing purposes only. It is not recommended for production use.\n\nFirst: Build an image with a specific version of Ubuntu and tag it as such.\n```\ndocker build --build-arg UBUNTU_VERSION=23.04 -t ona-dev:23.04 .\n```\n\nSecond: Start the container for general use. Point your browser to http://localhost/ona\n```\ndocker run -p 80:80 -it ona-dev:23.04\n```\n\nOR\n\nStart the container for development. Mount the current directory as a volume. This will allow you to edit the files on your host and have them be hosted in the container\n```\ndocker run -p 80:80 -it -v $(pwd):/opt/ona ona-dev:23.04\n```\n\nThis assumes you are in the directory you cloned the ONA repo into.\nAlso, if you have already installed this prior, you may need to remove `www/local/config/database_settings.conf.php` to get the install to run again.\n\n\n## Vagrant\n\nSimply clone this repo and issue a vagrant up to get a basic working system to develop with.\nYou will need to have git and [vagrant](https://vagrantup.com) installed on your system\n\n   git clone https://github.com/opennetadmin/ona.git\n   cd ona\n   vagrant up\n\n## Postman\n\nThere is a postman collection in the `docs` directory that can be used to interact with the API. An environment file is also provided that can be used. Simply import the collection and environment into postman or use Newman to run the collection from the command line.\n\nA simple usage would be:\n```\ncd /opt/ona\nnewman run docs/ONA-dcm.postman_collection.json -e docs/ONA-dcm-dev.postman_environment.json\n```\n\nCONTACT\n-------\n  * http://opennetadmin.com/\t\t-- Main website\n  * http://opennetadmin.com/community\t-- Contact information\n  * https://github.com/opennetadmin/ona/wiki -- Online documentation\n  * https://github.com/opennetadmin/ona/issues -- Discussion and issues\n\nLICENSE\n-------\nOpenNetAdmin is currently released under the GPLv2.0 license. A copy of the\nlicense is included in docs/LICENSE.\n\nSome additional modules/plugins etc may be provided outside of the GPL\nlicese. These will be indicated as such. The core of ONA will however be GPL.\n","funding_links":[],"categories":["PHP"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopennetadmin%2Fona","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopennetadmin%2Fona","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopennetadmin%2Fona/lists"}