There are 3 different format for sub class C arpa (reverse) zones.
I have an error parsing the following:
<octet4>/<mask>.<octet3>.<octet2>.<octet1>.in-addr.arpa
This is the error:
pyparsing.exceptions.ParseSyntaxException: , found '/' (at char 35000), (line:1731, col:10)
Where the zone is something like this:
zone "128/27.0.0.10.in-addr.arpa"
If I change the slash to a dash, it is parsed properly.
zone "128-27.0.0.10.in-addr.arpa"
So the following notation works
<octet4>-<mask>.<octet3>.<octet2>.<octet1>.in-addr.arpa
But I was expecting the previous one to also work.
The 3rd annotation also works.
<address_range_from>-<address_range_to>.<octet3>.<octet2>.<octet1>.in-addr.arpa
There are 3 different format for sub class C arpa (reverse) zones.
I have an error parsing the following:
This is the error:
Where the zone is something like this:
If I change the slash to a dash, it is parsed properly.
So the following notation works
But I was expecting the previous one to also work.
The 3rd annotation also works.