diff --git a/README.md b/README.md index d44cc55..8a6a2c3 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ DNS Diagnostics and Performance Measurement Tools ================================================== -Ever been wondering if your ISP is hijacking your DNS traffic? Ever observed any +Ever been wondering if your ISP is [hijacking your DNS traffic](https://decentralize.today/is-your-isp-hijacking-your-dns-traffic-f3eb7ccb0ee7#.fevks5wyc)? Ever observed any misbehavior with your DNS responses? Ever been redirected to wrong address and suspected something is wrong with your DNS? Here we have a set of tools to perform basic audits on your DNS requests and responses to make sure your DNS is @@ -89,6 +89,10 @@ server avg(ms) min(ms) max(ms) stddev(ms) lost(%) 208.67.220.220 137.817 135.822 140.113 1.504 %0 ``` +### License + +dnsdiag is released under a 2 clause BSD license. + ### Credits - [@rthalley](https://github.com/rthalley) for invaluable [dnspython](https://github.com/rthalley/dnspython) library diff --git a/setup.py b/setup.py index df71b49..3ef68ae 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup( name = "dnsdiag", - version = "1.2", + version = "1.2.1", packages = find_packages(), scripts = ['dnsping.py', 'dnstraceroute.py', 'dnseval.py'], classifiers=[ @@ -25,5 +25,5 @@ as well as tracing the path your DNS query takes to get to DNS server. """, license = "BSD", keywords = "dns traceroute ping", - url = "https://github.com/farrokhi/dnsdiag", + url = "https://dnsdiag.org/", )