Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

baumex: add unfiltered network #1199

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions locations/baumex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ hosts:
# eth2 / Port 3: vorne
# eth3 / Port 4: litebeam
# eth4 / Port 5: hinten
# eth5 / Port 6: dhcp
# eth5 / Port 6: fritzbox
host__rclocal__to_merge:
- |
uci set network.vlan_10.ports='eth0' # mesh_vater_60g
uci set network.vlan_30.ports='eth1' # mesh_lan_lte
uci set network.vlan_40.ports='eth2:t eth4:t eth5' # dhcp
uci set network.vlan_10.ports='eth0' # mesh_vater_60g
uci set network.vlan_30.ports='eth1' # mesh_lan_lte
uci set network.vlan_40.ports='eth2:t eth4:t' # dhcp public
uci set network.vlan_41.ports='eth5' # dhcp fritzbox
uci commit network; reload_config

- hostname: baumex-vorne
Expand All @@ -47,7 +48,8 @@ ipv6_prefix: "2001:bf7:840:3b00::/56"

# humpty got the following prefixes:
# Router: 10.248.28.128/25
# --MGMT: 10.248.28.128/27
# --MGMT: 10.248.28.128/28
# --HOST: 10.248.28.144/28
# --MESH: 10.248.28.160/27
# --DHCP: 10.248.28.192/26

Expand Down Expand Up @@ -78,13 +80,25 @@ networks:
# DHCP with filtering and isolation
- vid: 40
role: dhcp
name: dhcp
inbound_filtering: true
enforce_client_isolation: true
prefix: 10.248.28.192/26
ipv6_subprefix: 0
assignments:
baumex-core: 1

# DHCP (HOST) without filtering and isolation
- vid: 41
role: dhcp
name: host
inbound_filtering: false
enforce_client_isolation: false
prefix: 10.248.28.144/28
ipv6_subprefix: 2
assignments:
baumex-core: 1

# MGMT
- vid: 432
role: mgmt
Expand Down