All Projects → ansible-collections → community.network

ansible-collections / community.network

Licence: other
Ansible Community Network Collection

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to community.network

ansible-openwrt
Ansible collection to configure your OpenWrt devices more quickly and automatically (without Python)
Stars: ✭ 34 (-60%)
Mutual labels:  network-automation, ansible-collection
xrgrpc
gRPC library for Cisco IOS XR
Stars: ✭ 40 (-52.94%)
Mutual labels:  network-automation, network-programming
community.hashi vault
Ansible collection for managing and working with HashiCorp Vault.
Stars: ✭ 44 (-48.24%)
Mutual labels:  ansible-collection
community.digitalocean
This Ansible collection contains modules for assisting in the automation of the DigitalOcean cloud.
Stars: ✭ 115 (+35.29%)
Mutual labels:  ansible-collection
conf ndc 2018
NDC 2018 강연 자료
Stars: ✭ 24 (-71.76%)
Mutual labels:  network-programming
language-cisco
Add syntax highlighting to Cisco configuration files in Atom
Stars: ✭ 48 (-43.53%)
Mutual labels:  network-automation
protocol
Easy protocol definitions in Rust
Stars: ✭ 151 (+77.65%)
Mutual labels:  network-programming
community.windows
Windows community collection for Ansible
Stars: ✭ 148 (+74.12%)
Mutual labels:  ansible-collection
sensu-go-ansible
Official Ansible module for Sensu Go
Stars: ✭ 30 (-64.71%)
Mutual labels:  ansible-collection
junos-automation-with-ansible
How to automate Junos with Ansible. This project has many ready-to-use Ansible playbooks to interact with Junos devices.
Stars: ✭ 69 (-18.82%)
Mutual labels:  network-automation
julia
A lightweight high performance http server
Stars: ✭ 111 (+30.59%)
Mutual labels:  network-programming
salt-sproxy
Salt plugin to automate the management and configuration of (network) devices at scale, without running (Proxy) Minions.
Stars: ✭ 105 (+23.53%)
Mutual labels:  network-automation
collection template
A GitHub Template repo to use as the basis for future repos
Stars: ✭ 64 (-24.71%)
Mutual labels:  ansible-collection
hetzner.hcloud
A collection containing modules to manage resources on the Hetzner Cloud.
Stars: ✭ 58 (-31.76%)
Mutual labels:  ansible-collection
fancy
High performance web server
Stars: ✭ 20 (-76.47%)
Mutual labels:  network-programming
vigor
Main repository of the Vigor NF verification project.
Stars: ✭ 40 (-52.94%)
Mutual labels:  network-programming
public
BitDust project source codes : official Public Git repository (mirror on GitHub) : https://bitdust.io
Stars: ✭ 19 (-77.65%)
Mutual labels:  network-programming
connect
tiny cross-platform socket API library
Stars: ✭ 46 (-45.88%)
Mutual labels:  network-programming
cloudera.cluster
Ansible for automating Cloudera Clusters on baremetal or similar. Main development is a Collection.
Stars: ✭ 27 (-68.24%)
Mutual labels:  ansible-collection
community.zabbix
Zabbix Ansible modules
Stars: ✭ 224 (+163.53%)
Mutual labels:  ansible-collection

Community Network Collection

Build Status Codecov

This repository contains the community.network Ansible Collection. The collection is a part of the ansible package and includes many network modules and plugins supported by Ansible community which are not part of more specialized community collections.

You can find documentation for this collection on the Ansible docs site.

Code of Conduct

We follow Ansible Code of Conduct in all our interactions within this project.

If you encounter abusive behavior violating the Ansible Code of Conduct, please refer to the policy violations section of the Code of Conduct for information on how to raise a complaint.

Contributing to this collection

The content of this collection is made by good people just like you, a community of individuals collaborating on making the world better through developing automation software.

We are actively accepting new contributors.

All types of contributions are very welcome.

You don't know how to start? Refer to our contribution guide!

See the Ansible Community Guide for details on contributing to Ansible.

If you're interested in becoming a maintainer of this collection, refer to the Maintainer guidelines for details.

Communication

We announce important development changes and releases through Ansible's The Bullhorn newsletter. If you are a contributor, be sure you are subscribed.

Join us on:

Contributors to this collection take part in the global Ansible Contributor Summit virtually or in-person. Track The Bullhorn newsletter and join us.

For more information about communication, refer to the Ansible communication guide.

Tested with Ansible

Tested with the Ansible 2.11, 2.12, and 2.13 releases, and the current development version of Ansible. Ansible-core versions before 2.11.0 are not supported. In particular, ansible-base 2.10 and Ansible 2.9 are not supported. Use community.network 3.x.y if you are using Ansible 2.9 or ansible-base 2.10.

Supported connections

The community network collection supports network_cli and httpapi connections.

Included content

Click the Content button to see the list of content included in this collection, or check the documentation on the Ansible docs site.

Installing this collection

This collection is shipped with the ansible package. So if you have it installed, no more action is required.

If you have a minimal installation (only Ansible Core installed) or you want to use the latest version of the collection along with the whole ansible package, you need to install the collection from Ansible Galaxy manually with the ansible-galaxy command-line tool:

ansible-galaxy collection install community.network

You can also include it in a requirements.yml file and install it with ansible-galaxy collection install -r requirements.yml, using the format:

---
collections:
  - name: community.network
    # If you need a specific version of the collection, you can specify like this:
    # version: ...

Note that if you install the collection manually, it will not be upgraded automatically when you upgrade the ansible package. To upgrade the collection to the latest available version, run the following command:

ansible-galaxy collection install community.network --upgrade

You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax where X.Y.Z can be any available version:

ansible-galaxy collection install community.network:==X.Y.Z

See Ansible Using collections for more details.

Using this collection

You can call modules by their Fully Qualified Collection Name (FQCN), such as community.network.a10_server. The following example task creates a new server load balancer object on an A10 Networks device, using the FQCN:

---
    - name: Create a new server
      community.network.a10_server:
        host: a10.mydomain.com
        username: myadmin
        password: mypassword
        partition: mypartition
        server: test
        server_ip: 192.0.2.100
        server_ports:
          - port_num: 8080
            protocol: tcp
          - port_num: 8443
            protocol: TCP

Alternately, you can call modules by their short name if you list the community.network collection in the playbook's collections, as follows:

---
- hosts: "{{desired_inventory_group}}"
  connection: local

  collections:
    - community.network

  tasks:
    - name: Create a new server
      a10_server:
            host: a10.mydomain.com
            username: myadmin
            password: mypassword
            partition: mypartition
            server: test
            server_ip: 192.0.2.100
            server_ports:
              - port_num: 8080
                protocol: tcp
              - port_num: 8443
                protocol: TCP

See Also:

Changelogs

See here.

Roadmap

More information

Licensing

GNU General Public License v3.0 or later.

See COPYING to see the full text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].