ansible-role-interfaces icon indicating copy to clipboard operation
ansible-role-interfaces copied to clipboard

An ansible role for configuring different network interfaces

Results 25 ansible-role-interfaces issues
Sort by recently updated
recently updated
newest added

I'm trying to set up an InfiniBand interface on a Mellanox ConnectX-6 with OFED driver version 5.5-1.0.3.2 on Rocky 8.5 Drivers are installed and interfaces can be brought up manually....

partial fix for #103. should be complete when combined with #104

The little `dns-nameservers` bit is missing from the Debian bond template – would you like a PR to fix this? ```jinja {% if item.dnsnameservers is defined %} dns-nameservers {{ item.dnsnameservers...

Do you have plans to support multiple IP's per interface? On RedHat family ifcfg look like: ``` IPADDR=4.4.4.4 PREFIX=32 IPADDR1=8.8.8.8 PREFIX1=32 GATEWAY=9.9.9.9 ```

- Support static DNS config on bonded interfaces . Fixes #103. - Makes `onboot` optional for bonded interfaces, as it is for the others. - Use `MACADDR` on Red Hat...

Is there a recommended way to create an interface with neither static nor DHCP address? In my use case, I want to create a bonded parent interface, which won't have...

Hello, I am using Linux Mint 19.3. I try to setup a eth1/eth2 interfaces with the following: ``` interfaces_ether_interfaces: - device: eth1 bootproto: static address: 192.168.33.15 netmask: 255.255.255.0 gateway: 192.168.0.254...

Hey, I was not able to download the latest release 'v1.3.0' from ansible galaxy. I tried `ansible-galaxy install -r roles.yml` *roles.yml* ``` --- - name: MichaelRigart.interfaces version: "v1.3.0" ``` I...

On RedHat systems, this role doesn't manage existing ifcfg files that don't match active interface names. This can cause conflicts on reboot when the OS applies all ifcfg files, including...

I am trying to configure a machine that is working with gateway 10.10.10.1 (eth0) to use a different gateway (100.100.100.254) in eth1 . this is my config: ``` interfaces_ether_interfaces: -...