You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just faced pyparsing.exceptions.ParseException for option filter-aaaa-on-v4:
pyparsing.exceptions.ParseException: Expected '}', found 'filter' (at char 2902), (line:98, col:9)During handling of the above exception, another exception occurred:Traceback (most recent call last): File "library/bind9_info.py", line 227, in <module> main() File "library/bind9_info.py", line 223, in main run_module() File "library/bind9_info.py", line 208, in run_module result = my_clauses.parseString(toplevel_config, parseAll=True) File "/usr/local/lib/python3.8/ansible-2.12/lib/python3.8/site-packages/pyparsing/core.py", line 1141, in parse_string raise exc.with_traceback(None)pyparsing.exceptions.ParseSyntaxException: Expected '}', found 'filter' (at char 2902), (line:98, col:9)
Config:
options {
[…]
filter-aaaa-on-v4 yes;
[…]
};
The text was updated successfully, but these errors were encountered:
Perhaps setting the version number before reading the file to a desire version or your named.conf is actually holding some obsoleted clause/keywords?
The option is good since Ubuntu Server 18.04 LTS still brings BIND9 v9.11.3. Setting the target version is a good point. However, I was not yet able to figure out how to configure it. Did I miss any documentation about it?
Just faced
pyparsing.exceptions.ParseException
for optionfilter-aaaa-on-v4
:Config:
The text was updated successfully, but these errors were encountered: