Re: [Tutor] Finding all IP addresses associated with a host

2009-04-09 Thread Scott Newton
Thanks, not sure how I missed that one. -Scott On Thu, Apr 9, 2009 at 7:25 PM, Emile van Sebille wrote: > Scott Newton wrote: > >> I'm very new to python, and my google-fu has failed to locate an answer to >> the following: >> >> How can I find all of the (ipv4) addresses that are currently up

Re: [Tutor] Finding all IP addresses associated with a host

2009-04-09 Thread Emile van Sebille
Scott Newton wrote: I'm very new to python, and my google-fu has failed to locate an answer to the following: How can I find all of the (ipv4) addresses that are currently up on a host? In google I searched for "python what's my ip" and about the fourth entry down found a link that led me t

[Tutor] Finding all IP addresses associated with a host

2009-04-09 Thread Scott Newton
I'm very new to python, and my google-fu has failed to locate an answer to the following: How can I find all of the (ipv4) addresses that are currently up on a host? I realize I can call ifconfig and then munge the output with awk, but that seems messy, and before I tried that I though I would as