rm ttl
This commit is contained in:
parent
0bdcd2f3f9
commit
2ebfed3378
@ -130,11 +130,11 @@ def main() -> int:
|
||||
# Add forward and reverse records
|
||||
for address in addresses:
|
||||
if isinstance(address, ipaddress.IPv4Address):
|
||||
print(f"{host}. IN A {args.ttl} {address}")
|
||||
print(f"{address.reverse_pointer}. {args.ttl} IN PTR {host}")
|
||||
print(f"{host}. IN A {address}")
|
||||
print(f"{address.reverse_pointer}. IN PTR {host}")
|
||||
elif isinstance(address, ipaddress.IPv6Address):
|
||||
print(f"{host}. {args.ttl} IN AAAA {address}")
|
||||
print(f"{address.reverse_pointer}. {args.ttl} IN PTR {host}")
|
||||
print(f"{host}. IN AAAA {address}")
|
||||
print(f"{address.reverse_pointer}. IN PTR {host}")
|
||||
|
||||
|
||||
return 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user