{"id":18303998,"url":"https://github.com/computate-org/computate_vm_freeipa","last_synced_at":"2026-01-22T16:40:51.149Z","repository":{"id":124646982,"uuid":"454662211","full_name":"computate-org/computate_vm_freeipa","owner":"computate-org","description":null,"archived":false,"fork":false,"pushed_at":"2022-02-02T06:08:35.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T10:22:51.002Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/computate-org.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-02T06:07:56.000Z","updated_at":"2022-02-02T06:07:56.000Z","dependencies_parsed_at":"2023-08-08T12:16:30.849Z","dependency_job_id":null,"html_url":"https://github.com/computate-org/computate_vm_freeipa","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/computate-org/computate_vm_freeipa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/computate-org%2Fcomputate_vm_freeipa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/computate-org%2Fcomputate_vm_freeipa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/computate-org%2Fcomputate_vm_freeipa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/computate-org%2Fcomputate_vm_freeipa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/computate-org","download_url":"https://codeload.github.com/computate-org/computate_vm_freeipa/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/computate-org%2Fcomputate_vm_freeipa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28666694,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T14:01:31.714Z","status":"ssl_error","status_checked_at":"2026-01-22T13:59:23.143Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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-05T15:27:31.164Z","updated_at":"2026-01-22T16:40:51.130Z","avatar_url":"https://github.com/computate-org.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Install a VM Bridge Network\n\n## Install the latest Python and setup a new Python virtualenv\n\n```bash\nsudo yum install -y git python3 python3-pip python3-virtualenv python3-libselinux python3-libsemanage python3-policycoreutils\nvirtualenv-3 ~/python\nsource ~/python/bin/activate\necho \"source ~/python/bin/activate\" | tee -a ~/.bashrc\n```\n\n## Install the latest Ansible\n\n```bash\npip install setuptools_rust wheel\npip install --upgrade pip\npip install ansible selinux setools\n```\n\n## Install the vm_network ansible role\n\n### Create a directory for the ansible role. \n\n```bash\ninstall -d ~/.ansible/roles/computate.computate_vm_network\n```\n\n### Clone the vm_network ansible role. \n\n```bash\ngit clone git@github.com:computate-org/computate_vm_network.git ~/.ansible/roles/computate.computate_vm_network\n```\n\n## Run the vm_network ansible playbook to install the application locally (requires sudo privileges with -K). \n\n- Run `nmcli c` and look for one with TYPE=ethernet. \nNETWORK_ETHERNET_CONNECTION: \"enp2s0\"\n- Run `ip addr` and look for the mac address of the ethernet connection above. \nNETWORK_BRIDGE_MAC: \"40:40:40:40:40:40\"\n- Run `nmcli d` and look for the DEVICE of the ethernet CONNECTION above. \nNETWORK_ETHERNET_DEVICE: \"enp2s0\"\n- Run `ip addr` and look for the IP address of the ethernet connection above. \nNETWORK_IP_ADDRESS: \"192.168.0.2\"\n- Set the gateway to be the NETWORK_IP_ADDRESS above with a 1 at the end instead of another number. \nNETWORK_GATEWAY: \"192.168.0.1\"\n- You can set the DNS to the same as the NETWORK_GATEWAY above. \nNETWORK_DNS: \"192.168.0.1\"\n- You can set this to be the name of the NETWORK_ETHERNET_CONNECTION before. \nNETWORK_BRIDGE_SLAVE_CONNECTION: \"{{ NETWORK_ETHERNET_CONNECTION }}\"\n- You can name these uniquely to other computers on the network with bridge networks: br0, br1, br2, etc. \nNETWORK_BRIDGE_CONNECTION: \"br0\"\n\n\n```bash\ncd ~/.ansible/roles/computate.computate_vm_network\nansible-playbook -K install.yml -e NETWORK_ETHERNET_CONNECTION=\"enp2s0\" -e \"NETWORK_BRIDGE_MAC=40:40:40:40:40:40\" -e \"NETWORK_ETHERNET_DEVICE=enp2s0\" -e \"NETWORK_IP_ADDRESS=192.168.0.2\" -e \"NETWORK_GATEWAY=192.168.0.1\" -e \"NETWORK_DNS=192.168.0.1\" -e \"NETWORK_BRIDGE_SLAVE_CONNECTION={{ NETWORK_ETHERNET_CONNECTION }}\" -e \"NETWORK_BRIDGE_CONNECTION=br0\"\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomputate-org%2Fcomputate_vm_freeipa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomputate-org%2Fcomputate_vm_freeipa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomputate-org%2Fcomputate_vm_freeipa/lists"}