diff options
author | Martin Basti <mbasti@redhat.com> | 2015-11-12 17:06:34 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2015-11-13 14:01:46 +0100 |
commit | c08d4523b206c1a86ec4d4c577605d57611198a0 (patch) | |
tree | c6a2df3409644230e02a90e47affe6498654dcf2 /ipatests/test_xmlrpc/test_dns_plugin.py | |
parent | efe8f26ddf81db471bbce693dacd35f80e7615e2 (diff) | |
download | freeipa-c08d4523b206c1a86ec4d4c577605d57611198a0.tar.gz freeipa-c08d4523b206c1a86ec4d4c577605d57611198a0.tar.xz freeipa-c08d4523b206c1a86ec4d4c577605d57611198a0.zip |
Tests: DNS replace 192.0.2.0/24 with 198.18.0.0/15 range
192.0.2.0/24 is IANA reserved address that should not be used. netaddr
module check implemented for this address and IPA reject this address as
invalid.
198.18.0.0/15 is IANA reserved address for benchmark testing purpose, so
we can safely use this network.
http://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml
Reviewed-By: Petr Spacek <pspacek@redhat.com>
Diffstat (limited to 'ipatests/test_xmlrpc/test_dns_plugin.py')
-rw-r--r-- | ipatests/test_xmlrpc/test_dns_plugin.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ipatests/test_xmlrpc/test_dns_plugin.py b/ipatests/test_xmlrpc/test_dns_plugin.py index 4d3117f17..3de44e472 100644 --- a/ipatests/test_xmlrpc/test_dns_plugin.py +++ b/ipatests/test_xmlrpc/test_dns_plugin.py @@ -273,8 +273,9 @@ arec3 = u'172.16.250.123' fwd_ip = u'172.16.31.80' allowtransfer_tofwd = u'%s;' % fwd_ip -allowquery_restricted_in = u'!192.0.2/24;any;' -allowquery_restricted_out = u'!192.0.2.0/24;any;' +# 198.18.0.0/15 testing range reserved by RFC2544 +allowquery_restricted_in = u'!198.18.2.0/24;any;' +allowquery_restricted_out = u'!198.18.2.0/24;any;' idnzone1 = u'\u010d.test.' idnzone1_punycoded = u'xn--bea.test.' @@ -2958,7 +2959,7 @@ class test_dns(Declarative): 'idnssoaexpire': [fuzzy_digits], 'idnssoaminimum': [fuzzy_digits], 'idnsallowtransfer': [u'172.16.31.80;'], - 'idnsallowquery': [u'!192.0.2.0/24;any;'], + 'idnsallowquery': [allowquery_restricted_out], 'mxrecord': [u'0 ns1.dnszone.test.'], 'locrecord': [u"49 11 42.400 N 16 36 29.600 E 227.64 10.00 10.00 0.10"], }, @@ -2996,7 +2997,7 @@ class test_dns(Declarative): 'idnssoaexpire': [fuzzy_digits], 'idnssoaminimum': [fuzzy_digits], 'idnsallowtransfer': [u'172.16.31.80;'], - 'idnsallowquery': [u'!192.0.2.0/24;any;'], + 'idnsallowquery': [allowquery_restricted_out], 'mxrecord': [u'0 ns1.dnszone.test.'], 'locrecord': [u"49 11 42.400 N 16 36 29.600 E 227.64 10.00 10.00 0.10"], }, |