Code Monkey home page Code Monkey logo

Comments (2)

ValentinBELYN avatar ValentinBELYN commented on August 28, 2024

Hi @cldeluna 👋, I'm glad you like this library!

You recommend not using FQDNs. May I as why? Most of my inventory files use FQDNs which is why I ask.

FQDNs are not discouraged except for the multiping function (see #44). In short, icmplib provides several out-of-the-box functions including the multiping function. This function can resolve FQDNs or hostnames like the other ones. However, if one of them is not resolvable, the whole function stops (and raises an NameLookupError), which can be problematic depending on the context.

Example:

from icmplib import multiping, NameLookupError

domains = [
    'google.com',
    'dns.google.com',
    'this-domain-does-not-exist.tld',
    'github.com',
    'one.one.one.one'
]

try:
    hosts = multiping(domains, privileged=False)

    for host in hosts:
        if host.is_alive:
            print(f'{host.address} is up!')
        else:
            print(f'{host.address} is down!')
except NameLookupError as err:
    print(err)

Will output:

The name 'this-domain-does-not-exist.tld' cannot be resolved

To control exceptions more precisely, the same library provides a resolve function that you can use to resolve FQDNs and hostnames to IPs, which you can then pass to the multiping function.

Example:

from icmplib import multiping, resolve, NameLookupError

domains = [
    'google.com',
    'dns.google.com',
    'this-domain-does-not-exist.tld',
    'github.com',
    'one.one.one.one'
]

addresses = []

for domain in domains:
    try:
        address = resolve(domain)[0]
        addresses.append(address)
    except NameLookupError:
        print(f'{domain} does not exist!')

hosts = multiping(addresses, privileged=False)

for host in hosts:
    if host.is_alive:
        print(f'{host.address} is up!')
    else:
        print(f'{host.address} is down!')

Will output:

this-domain-does-not-exist.tld does not exist!
216.58.213.174 is up!
8.8.8.8 is up!
140.82.121.3 is up!
1.1.1.1 is up!

Would it be possible to add reverse lookup (get FQDN from IP address)?

icmplib focuses on the ICMP protocol and not on the DNS protocol 😉 Python already includes great tools to do this like socket.getnameinfo.

Example:

>>> import socket
>>> socket.getnameinfo(('8.8.8.8', 0), 0)[0]
'dns.google'

from icmplib.

ValentinBELYN avatar ValentinBELYN commented on August 28, 2024

Hi @cldeluna!

Thank you for your huge donation! ❤️ It's really gratifying to see that this project is appreciated.
Sorry for the delay, I'm a little overwhelmed right now. I only saw your donation recently.

Would you like me to put your name on the README to thank you?

from icmplib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.