blob: ebb2057ec15ba895d2c027d7bbbb851dab33d6b3 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/env python3
#
# Copyright (C) 2022 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import time
from vyos.configquery import ConfigTreeQuery
from vyos.firewall import get_ips_domains_dict
from vyos.firewall import nft_add_set_elements
from vyos.firewall import nft_flush_set
from vyos.firewall import nft_init_set
from vyos.firewall import nft_update_set_elements
from vyos.util import call
base = ['firewall', 'group', 'domain-group']
check_required = True
count_failed = 0
# Timeout in sec between checks
timeout = 300
if __name__ == '__main__':
while check_required:
config = ConfigTreeQuery()
if config.exists(base):
domain_groups = config.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True)
for set_name, domain_config in domain_groups.items():
list_domains = domain_config['address']
elements = get_ips_domains_dict(list_domains)
# Resolve successful
if bool(elements):
nft_update_set_elements(set_name, elements)
count_failed = 0
else:
count_failed += 1
# Domains not resolved 3 times by timeout
if count_failed >= timeout * 3:
nft_flush_set(set_name)
time.sleep(timeout)
|