summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ele-router.yml
blob: 79ee5871fa87fad2342a03275cccc84eb84d175f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
---
network_wan_zone: "{{ network_zones.dom }}"
network_mgmt_zone: "{{ network_zones.mgmt }}"
network_internal_zone_names:
  - lan
  - guest
  - infobeamer


openwrt_network_external:
  # - name: interface 'wan'
  #   options:
  #     ifname: eth0
  #     proto: dhcp

  - name: interface 'wan'
    options:
      ifname: "eth0.{{ network_wan_zone.vlan }}"
      accept_ra: 0
      proto: static
      ipaddr: "{{ network_wan_zone.prefix | ipaddr(network_wan_zone.offsets[inventory_hostname]) | ipaddr('address') }}"
      netmask: "{{ network_wan_zone.prefix | ipaddr('netmask') }}"
      gateway: "{{ network_wan_zone.gw }}"
      dns: "{{ network_wan_zone.dns }}"

openwrt_network_internal: "{{ openwrt_network_internal_yaml | from_yaml }}"
openwrt_network_internal_yaml: |
  {% for zone_name in network_internal_zone_names %}
  - name: "interface '{{ zone_name }}'"
    options:
      ifname: "eth1.{{ network_zones[zone_name].vlan }}"
      accept_ra: 0
      proto: static
      ipaddr: "{{ network_zones[zone_name].gw }}"
      netmask: "{{ network_zones[zone_name].prefix | ipaddr('netmask') }}"
  {% endfor %}

openwrt_network_base:
  - name: globals 'globals'
    options:
      ula_prefix: "fc{{ '%02x:%04x:%04x' | format((255 | random(seed=inventory_hostname + '0')), (65535 | random(seed=inventory_hostname + '1')), (65535 | random(seed=inventory_hostname + '2'))) }}::/48"

  - name: interface 'loopback'
    options:
      ifname: lo
      proto: static
      ipaddr: 127.0.0.1
      netmask: 255.0.0.0

  - name: interface 'mgmt'
    options:
      ifname: "eth1.{{ network_mgmt_zone.vlan }}"
      accept_ra: 0
      proto: static
      ipaddr: "{{ network_mgmt_zone.prefix | ipaddr(network_mgmt_zone.offsets[inventory_hostname]) | ipaddr('address') }}"
      netmask: "{{ network_mgmt_zone.prefix | ipaddr('netmask') }}"


openwrt_dhcp_external:
  - name: dhcp 'wan'
    options:
      interface: 'wan'
      ignore: '1'

openwrt_dhcp_internal: "{{ openwrt_dhcp_internal_yaml | from_yaml }}"
openwrt_dhcp_internal_yaml: |
  {% for zone_name in network_internal_zone_names %}
  - name: "dhcp '{{ zone_name }}'"
    options:
      interface: "{{ zone_name }}"
  {%  if 'dhcp' in network_zones[zone_name] %}
      start: {{ network_zones[zone_name].dhcp.start }}
      limit: {{ network_zones[zone_name].dhcp.limit }}
      leasetime: {{ network_zones[zone_name].dhcp.leasetime | default('12h') }}
      dhcpv6: 'disabled'
      ra: 'disabled'
  {%  else %}
      ignore: '1'
  {%  endif %}
  {% endfor %}

openwrt_dhcp_base:
  - name: dnsmasq
    options:
      domainneeded: '1'
      boguspriv: '1'
      filterwin2k: '0'
      localise_queries: '1'
      rebind_protection: '1'
      rebind_localhost: '1'
      local: '/lan/'
      domain: 'lan'
      expandhosts: '1'
      nonegcache: '0'
      authoritative: '1'
      readethers: '1'
      leasefile: '/tmp/dhcp.leases'
      resolvfile: '/tmp/resolv.conf.auto'
      localservice: '1'

  - name: odhcpd 'odhcpd'
    options:
      maindhcp: '0'
      leasefile: '/tmp/hosts/odhcpd'
      leasetrigger: '/usr/sbin/odhcpd-update'

  - name: dhcp 'mgmt'
    options:
      interface: 'mgmt'
      ignore: '1'



openwrt_variant: lede
openwrt_release: 17.01.6
openwrt_arch: ar71xx
openwrt_target: generic
openwrt_profile: tl-wr710n-v2
openwrt_output_image_suffixes:
  - "generic-{{ openwrt_profile }}-squashfs-sysupgrade.bin"

openwrt_packages_remove:
  - kmod-gpio-button-hotplug
  - kmod-ath9k
  - wpad-mini
  - ppp
  - ppp-mod-pppoe
  - firewall
  - odhcpd-ipv6only
openwrt_packages_add:
  - kmod-ipt-nat
  - haveged
  - htop
  - ip
  - less
  - nano
  - tcpdump-mini
  - iperf
  - mtr
  - qos-scripts



openwrt_mixin:
  /etc/dropbear/authorized_keys:
    content: "{{ ssh_keys_root | join('\n') }}\n"

  /etc/htoprc:
    file: "{{ global_files_dir }}/common/htoprc"

    ## TODO: this script needs to be activated ... probably using a symlink file?
  /etc/init.d/network-nat:
    mode: "0755"
    content: |
      #!/bin/sh /etc/rc.common

      START=22
      STOP=90

      source /lib/functions/network.sh

      network_get_device WAN_IF "wan"

      {% for zone_name in network_internal_zone_names %}
      network_get_subnets NETS "{{ zone_name }}"
      {%   if loop.first %}
      INTERNAL_NETS="$NETS"
      {%   else %}
      INTERNAL_NETS="INTERNAL_NETS $NETS"
      {%   endif %}
      {% endfor %}

      start() {
        for net in $INTERNAL_NETS; do
          iptables -t nat -A POSTROUTING -o $WAN_IF -s $net -j MASQUERADE
        done;
      }

      stop() {
        iptables -t nat POSTROUTING -F
      }


openwrt_uci:
  system:
    - name: system
      options:
        hostname: '{{ inventory_hostname }}'
        timezone: 'CET-1CEST,M3.5.0,M10.5.0/3'
        ttylogin: '0'
        log_size: '64'
        urandom_seed: '0'

    - name: timeserver 'ntp'
      options:
        enabled: '1'
        enable_server: '0'
        server:
          - '0.lede.pool.ntp.org'
          - '1.lede.pool.ntp.org'
          - '2.lede.pool.ntp.org'
          - '3.lede.pool.ntp.org'

  dropbear:
    - name: dropbear
      options:
        PasswordAuth: 'off'
        RootPasswordAuth: 'off'
        Port: '22000'

  dhcp: "{{ openwrt_dhcp_base + openwrt_dhcp_internal + openwrt_dhcp_external }}"

  network: "{{ openwrt_network_base + openwrt_network_internal + openwrt_network_external }}"