summaryrefslogtreecommitdiff
path: root/src/migration-scripts/firewall/17-to-18
blob: 34ce6aa07022d92d2e4e2fe1b45712c790268175 (plain)
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
# Copyright (C) 2024-2025 VyOS maintainers and contributors
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library.  If not, see <http://www.gnu.org/licenses/>.

# From
#   set firewall zone <zone> interface RED
#   set firewall zone <zone> interface eth0
# To
#   set firewall zone <zone> member vrf RED
#   set firewall zone <zone> member interface eth0

from vyos.configtree import ConfigTree

base = ['firewall', 'zone']

def migrate(config: ConfigTree) -> None:
    if not config.exists(base):
        # Nothing to do
        return

    for zone in config.list_nodes(base):
        zone_iface_base = base + [zone, 'interface']
        zone_member_base = base + [zone, 'member']
        if config.exists(zone_iface_base):
            for iface in config.return_values(zone_iface_base):
                if config.exists(['vrf', 'name', iface]):
                    config.set(zone_member_base + ['vrf'], value=iface, replace=False)
                else:
                    config.set(zone_member_base + ['interface'], value=iface, replace=False)
            config.delete(zone_iface_base)