Skip to content

Instantly share code, notes, and snippets.

@mlashcorp
Created August 14, 2013 19:30
Show Gist options
  • Save mlashcorp/6234668 to your computer and use it in GitHub Desktop.
Save mlashcorp/6234668 to your computer and use it in GitHub Desktop.
Python: discover ip address of interface that has internet accessibility (in case there are many)
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("gmail.com",80))
print(s.getsockname()[0])
s.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment