break out br0 from hostapd
This commit is contained in:
parent
7f1175bf48
commit
a2340a900f
14
salt/states/br0/init.sls
Normal file
14
salt/states/br0/init.sls
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
Set {{ pillar['network']['bridge'] }} to be managed by NetworkManager:
|
||||||
|
cmd.run:
|
||||||
|
- name: nmcli device set {{ pillar['network']['bridge'] }} managed yes
|
||||||
|
- unless: bash -c "if [[ \"$(nmcli device show {{ pillar['network']['bridge'] }} | sed -n 's/^GENERAL.STATE.*(\(.*\)).*$/\1/p')\" == \"unmanaged\" ]]; then exit 1; else exit 0; fi"
|
||||||
|
|
||||||
|
Configure {{ pillar['network']['bridge'] }} connection:
|
||||||
|
cmd.run:
|
||||||
|
- name: nmcli connection add con-name {{ pillar['network']['bridge'] }} type bridge ifname {{ pillar['network']['bridge'] }} ipv4.method manual ipv4.addresses {{ pillar['network']['ip'] }}/24 ipv4.dns "127.0.0.1, 1.1.1.1, 1.1.1.2" ipv6.method disabled connection.autoconnect yes stp no
|
||||||
|
- unless: nmcli connection show {{ pillar['network']['bridge'] }} > /dev/null
|
||||||
|
|
||||||
|
Add {{ pillar['network']['interface'] }} to bridge {{ pillar['network']['bridge'] }}:
|
||||||
|
cmd.run:
|
||||||
|
- name: nmcli connection add con-name {{ pillar['network']['bridge'] }}-{{ pillar['network']['interface'] }} ifname {{ pillar['network']['interface'] }} type bridge-slave master {{ pillar['network']['bridge'] }} connection.autoconnect yes
|
||||||
|
- unless: nmcli connection show {{ pillar['network']['bridge'] }}-{{ pillar['network']['interface'] }} > /dev/null
|
@ -49,20 +49,3 @@ Start hostapd:
|
|||||||
- enable: True
|
- enable: True
|
||||||
- watch:
|
- watch:
|
||||||
- file: Configure hostapd
|
- file: Configure hostapd
|
||||||
|
|
||||||
Set {{ pillar['network']['bridge'] }} to be managed by NetworkManager:
|
|
||||||
cmd.run:
|
|
||||||
- name: nmcli device set {{ pillar['network']['bridge'] }} managed yes
|
|
||||||
- unless: bash -c "if [[ \"$(nmcli device show {{ pillar['network']['bridge'] }} | sed -n 's/^GENERAL.STATE.*(\(.*\)).*$/\1/p')\" == \"unmanaged\" ]]; then exit 1; else exit 0; fi"
|
|
||||||
|
|
||||||
Configure {{ pillar['network']['bridge'] }} connection:
|
|
||||||
cmd.run:
|
|
||||||
- name: nmcli connection add con-name {{ pillar['network']['bridge'] }} type bridge ifname {{ pillar['network']['bridge'] }} ipv4.method manual ipv4.addresses {{ pillar['network']['ip'] }}/24 ipv4.dns "127.0.0.1, 1.1.1.1, 1.1.1.2" ipv6.method disabled connection.autoconnect yes stp no
|
|
||||||
- unless: nmcli connection show {{ pillar['network']['bridge'] }} > /dev/null
|
|
||||||
|
|
||||||
Add {{ pillar['network']['interface'] }} to bridge {{ pillar['network']['bridge'] }}:
|
|
||||||
cmd.run:
|
|
||||||
- name: nmcli connection add con-name {{ pillar['network']['bridge'] }}-{{ pillar['network']['interface'] }} ifname {{ pillar['network']['interface'] }} type bridge-slave master {{ pillar['network']['bridge'] }} connection.autoconnect yes
|
|
||||||
- unless: nmcli connection show {{ pillar['network']['bridge'] }}-{{ pillar['network']['interface'] }} > /dev/null
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ base:
|
|||||||
'*':
|
'*':
|
||||||
- packages
|
- packages
|
||||||
- hosts
|
- hosts
|
||||||
|
- br0
|
||||||
- vlan
|
- vlan
|
||||||
- hostapd
|
- hostapd
|
||||||
- firewalld
|
- firewalld
|
||||||
|
Loading…
Reference in New Issue
Block a user