Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8189711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T03:22:32+00:00 2026-06-07T03:22:32+00:00

I have a script that does something like the following… import socket hostIP=sys.argv[1] if

  • 0

I have a script that does something like the following…

import socket

hostIP=sys.argv[1]

if socket.inet_aton(hostIP):
    # Do something with valid ip address
else:
    # Print error message

Which works fine for valid addresses, however when I try an invalid address it does not work (i.e. printing my error message), and throws out a socket error…

Traceback (most recent call last):
  File "addNew.py", line 35, in <module>
    if socket.inet_aton(hostIP):
socket.error: illegal IP address string passed to inet_aton

Any thoughts on how I can achieve what I want (i.e. just a simple message rather than the socket error).

Thanks in advance,

MHibbin

UPDATE: Working(ish) script

import os
import sys
import fileinput
import platform
import subprocess
import re
import socket

hostsFile = "hosts.txt"
hostsLookFile = "hosts.csv"
hostsURLFileLoc = "urls.conf"
plat = platform.system()
currentDir = "C:/Program Files/Splunk/etc/apps/gtvm/bin"
hostsFileLoc = currentDir + "/" + hostsFile
hostsLookFileLoc = currentDir + "/../lookups/" + hostsLookFile
hostsURLFileLoc = currentDir + "/../default/" + hostsURLFileLoc
hostIP = sys.argv[1]
hostName = sys.argv[2]
hostURL = sys.argv[3]
hostMan = sys.argv[4]
hostModel = sys.argv[5]
hostType = sys.argv[6]
hostDC = sys.argv[7]

#pat = re.compile(^hostIP\s+)

#test = pat.match(hostIP)
#if test:
#   print "Acceptable ip address"
#else:
#   print "Unacceptable ip address"


try:
    socket.inet_aton(hostIP)
except socket.error as e:
    print "Unacceptable ip address", e
else:
    print "Acceptable ip address, proceeding..."
    print "Checking host if " + hostIP + " exists..."
    if not hostIP in open(hostsFileLoc).read():
        print hostIP + " does not yet exist, checking valid required input..."
        if hostName != "*" and hostIP != "*":
            print "...processing..."
            with open(hostsFileLoc,'a+') as hostsFilePython, open(hostsLookFileLoc, 'a+') as hostsLookFileCSV, open(hostsURLFileLoc, 'a+') as 

hostsURLPython:
                print "..host IP adddress for ping testing.."
                hostsFilePython.write(hostIP + "\n")
                print "..and, all values for referencing.."
                hostsLookFileCSV.write(hostIP + "," + hostName + "," + hostURL + "," + hostMan + "," + hostModel + "," + hostType + "," + 

hostDC + "," + "\n")
                if hostURL != "*": 
                    "..adding URL for webping testing.."
                    hostsURLPython.write("[" + hostName + "]\n" + "url = " + hostURL + "\n" + "sleep = 60" + "\n" + "\n")
                    print "done!"

        else:
            print "..failed! - Both host IP address and host name required"
    else:
        print hostIP + " already exists, please review lookups."
#except socket.error as e:
#   print "Unacceptable ip address", e
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T03:22:33+00:00Added an answer on June 7, 2026 at 3:22 am

    Use tryand except.

    import socket
    
    hostIP=sys.argv[1]
    
    try:
        socket.inet_aton(hostIP)
    except socket.error as e:
        print "Error:", e
    else:
        # Do something with valid ip address
    

    First you try to run socket.inet_aton(hostIP), if it fails it prints the error message, if it succeeds, it does some code under the else. You put the other code under else instead of in the try, to avoid catching exceptions that are raised by the other code.


    UPDATE:

    import platform
    import subprocess
    import re
    import socket
    
    hostsFile = "hosts.txt"
    hostsLookFile = "hosts.csv"
    hostsURLFileLoc = "urls.conf"
    plat = platform.system()
    currentDir = "C:/Program Files/Splunk/etc/apps/gtvm/bin"
    hostsFileLoc = currentDir + "/" + hostsFile
    hostsLookFileLoc = currentDir + "/../lookups/" + hostsLookFile
    hostsURLFileLoc = currentDir + "/../default/" + hostsURLFileLoc
    hostIP = sys.argv[1]
    hostName = sys.argv[2]
    hostURL = sys.argv[3]
    hostMan = sys.argv[4]
    hostModel = sys.argv[5]
    hostType = sys.argv[6]
    hostDC = sys.argv[7]
    
    #pat = re.compile("\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}")
    
    #test = pat.match(hostIP)
    #if test:
    #   print "Acceptable ip address"
    #else:
    #   print "Unacceptable ip address"
    
    
    try:
        socket.inet_aton(hostIP)
    except socket.error as e:
        print "Unacceptable ip address", e
    else:
        print "Acceptable ip address, proceeding..."
        print "Checking host if " + hostIP + " exists..."
        if not hostIP in open(hostsFileLoc).read():
            print hostIP + " does not yet exist, checking valid required input..."
            if hostName != "*" and hostIP != "*":
                print "...processing..."
                with open(hostsFileLoc,'a+') as hostsFilePython, open(hostsLookFileLoc, 'a+') as hostsLookFileCSV, open(hostsURLFileLoc, 'a+') as hostsURLPython:
                    print "..host IP adddress for ping testing.."
                    hostsFilePython.write(hostIP + "\n")
                    print "..and, all values for referencing.."
                    hostsLookFileCSV.write(hostIP + "," + hostName + "," + hostURL + "," + hostMan + "," + hostModel + "," + hostType + "," + hostDC + "," + "\n")
                    if hostURL != "*": 
                        "..adding URL for webping testing.."
                        hostsURLPython.write("[" + hostName + "]\n" + "url = " + hostURL + "\n" + "sleep = 60" + "\n" + "\n")
                        print "done!"
    
            else:
                print "..failed! - Both host IP address and host name required"
        else:
            print hostIP + " already exists, please review lookups."
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bash script that runs (something like) the following command: vim -E
I have a PHP script that does the following: Uses file_get_contents() to get content
i have a script that does a lot of processing on some rows from
Currently we have a script that does maven build + tomcat deploy. Deploying to
So, I have GreaseMonkey Script that does some operations with integers and then sets
I have a bash script that does ssh to a remote machine and executes
I have a ColdFusion script that does: <cfset content = replace(content,&##147;,,all)> Which replaces &147;
I have a ruby script that does a few perforce operations (through the scripting
I have a simple script that does some search and replace. This is basically
I have a PHP script that does basic encryption of a string through the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.