IP Address

2000-12-14 Thread Sisyphus
Hi, I'm seeking a perl script that I can run on my PC (Windows 98) that will return my IP address. My best, so far, would be to try and extract it from the output of netstat -r. I don't even want to try that - there has to be somethin' better. Cheers, Rob Visit our

IP Address

2003-01-09 Thread Fontenot, Paul
Does anyone have a regex that will pull an IP address out of a file? OR better yet, something that will help a newbie in a rush to be able to figure it out on my own. Thanks for the help.   -Paul

IP address calculation

2005-10-25 Thread Markus
Hi all,   I get IP network definition in format like this one 10.10.16.0/23 and need to calculate after counter additional networks.   In the first step I need to validate the correctness of delivered IP network definition. In the second step increment in valid steps additional network

Resolve IP address

2002-09-18 Thread Kevin
Hello, Is there a module that anyone can recommend that will reverse resolve an IP address and return a domain. TIA. --Kevin ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: IP Address

2003-01-10 Thread Carl Jolley
On Fri, 10 Jan 2003, [iso-8859-9] Burak Gürsoy wrote: > why? > > > -Original Message- > > From: Carl Jolley [mailto:[EMAIL PROTECTED]] > > Sent: Friday, January 10, 2003 5:36 AM > > To: Burak Gürsoy > > Cc: [EMAIL PROTECTED] > > Subject: RE:

RE: IP Address

2003-01-10 Thread Burak Gürsoy
hmm... ok :) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Carl Jolley > Sent: Friday, January 10, 2003 10:00 PM > To: Burak Gürsoy > Cc: [EMAIL PROTECTED] > Subject: RE: IP Address > > > On Fri, 10 Jan 2003

Get IP Address

2003-01-22 Thread Jeff Slutzky
Is there a quick and dirty way to get the IP address for a Win9x PC? Jeffrey L. Slutzky Manager System Administration 402.501.4860 (Direct) 402.850.4860 (Cell) Affinitas - Latin for "Relationship" Helping

Re: IP address calculation

2005-10-25 Thread David TV
Hello, Markus. Check out this "little" utility I found some time ago over the Internet: "ipcalc.pl" Use the Google search to look for "ipcalc.pl", and you'll find something VERY interesting ;) in the first lines. Hope it helps! On 10/25/05, Markus <[EMAIL PROTECTED]> wrote: > > > > Hi all, > >

Re: IP address calculation

2005-10-25 Thread Chris Wagner
Hi, can u state what u need in another way or go into some more detail? I can't figure out what ur even trying to do from what u wrote. At 10:36 AM 10/25/2005 +0200, Markus wrote: >I get IP network definition in format like this one 10.10.16.0/23 and need >to calculate after counter additional ne

RE: IP address calculation

2005-10-25 Thread Peter Eisengrein
@[EMAIL PROTECTED]; } elsif ($ARGV[0] eq "-last") { # ping whatever it was that you ping'd last time open(LAST,"ping-pl.last") || &noCfg; @hosts=; close(LAST); } e

AW: IP address calculation

2005-10-25 Thread Markus
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Chris Wagner Gesendet: Dienstag, 25. Oktober 2005 15:26 An: perl-win32-users@listserv.ActiveState.com Betreff: Re: IP address calculation Hi, can u state what u need in another way or go into some more detail? I can't figure ou

RE: Resolve IP address

2002-09-18 Thread Peter Eisengrein
Title: RE: Resolve IP address http://search.cpan.org/search?mode=module&query=nslookup > -Original Message- > From: Kevin [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 13:29 > To: Perl-Win32-Users > Subject: Resolve IP address > >

RE: change IP address

2002-11-11 Thread John Serink
nal Message- > From: Stovall, Adrian M. [mailto:Adrian.Stovall@;durez.com] > Sent: Monday, November 11, 2002 11:23 PM > To: [EMAIL PROTECTED] > Subject: RE: change IP address > > > IIRC Windows NT doesn't support changing IP addresses without > a re

Re: Get IP Address

2003-01-22 Thread Dirk Bremer \(NISC\)
ext. 8652 fax 636-447-4471 [EMAIL PROTECTED] www.nisc.cc - Original Message - From: "Jeff Slutzky" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 13:32 Subject: Get IP Address > Is there a quick and dirty way to get the

RE: Get IP Address

2003-01-22 Thread Jarvis, John
t: Wednesday, January 22, 2003 11:32 AM To: '[EMAIL PROTECTED]' Subject: Get IP Address Is there a quick and dirty way to get the IP address for a Win9x PC? Jeffrey L. Slutzky Manager System Administration

RE: Get IP Address

2003-01-22 Thread Jeff Slutzky
I'm trying to accomplish this from within a perl script. -Original Message- From: Jarvis, John Sent: Wednesday, January 22, 2003 1:56 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: RE: Get IP Address For local access, try typing

RE: Get IP Address

2003-01-22 Thread Jarvis, John
you could try "system("ipconfig");" but you'd have to parse some text such as this: Windows 95 IP Configuration 0 Ethernet adapter : IP Address. . . . . . . . . : 0.0.0.0 Subnet Mask . . . . . . . . : 0.0.0.0 Default Gateway . . . .

Re: Get IP Address

2003-01-22 Thread Harald Wopenka
From: "Jeff Slutzky" <[EMAIL PROTECTED]> To: "'Jarvis, John'" <[EMAIL PROTECTED]> Cc: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 9:24 PM Subject: RE: Get IP Address > I'm trying to accom

RE: Get IP Address

2003-01-22 Thread Jonathan Epstein
>as this: > > >Windows 95 IP Configuration > >0 Ethernet adapter : > >IP Address. . . . . . . . . : 0.0.0.0 >Subnet Mask . . . . . . . . : 0.0.0.0 >Default Gateway . . . . . . : > >1 Ethernet adapter : > >IP Address. . . . . . . . . : 0

Re: Get IP Address

2003-01-22 Thread Prashanth
<[EMAIL PROTECTED]> Cc: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 2:00 AM Subject: RE: Get IP Address > you could try "system("ipconfig");" but you'd have to parse some text such > as this: > > > Windo

Re: Get IP Address

2003-01-22 Thread Paul O'Russa
Or a nifty one-liner if you really want to compact it, like this: my $ipc = (`ipconfig` =~ m/IP Address[ \.]+: (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/)[0]; Paul >>> "Harald Wopenka" <[EMAIL PROTECTED]> 1/22/2003 12:45:00 PM >>> Hi, $ipc=`ipconfig`; $ipc=su

Net::DNS::Resolver - IP address to DNS name?

2003-12-22 Thread Rush, Thomas
I have been trying to convert an IP address into it's DNS name using DNS::Resolver without much joy. I have used DNS::Resolver to convert DNS names to IP addresses successfully.   OS: WIN32 Perl V 5.8.2   The return value fails with the following error message: query f

forcing perl to use a different IP Address

2003-03-06 Thread Jaime Teng
Hi, I have NT/2K with 2 IP Addresses. Currently, my script sits on these machines communicating with external machines. However, it is important that my script SHOULD use the IP address where the external machines talked to. ie, 1. machine has IP1 and IP2, 2. external machine opened a tcp

Re: Net::DNS::Resolver - IP address to DNS name?

2003-12-22 Thread Trevor Joerges
Trevor Joerges - Original Message - From: Rush, Thomas To: [EMAIL PROTECTED] Sent: Monday, December 22, 2003 4:32 PM Subject: Net::DNS::Resolver - IP address to DNS name? I have been trying to convert an IP address into it's DNS name using DNS::Resolver without much joy. I have

Re: Net::DNS::Resolver - IP address to DNS name?

2003-12-22 Thread Jim Hill
Rush, Thomas in <[EMAIL PROTECTED]>: > I have been trying to convert an IP address into it's DNS name using > DNS::Resolver without much joy. Your code, with the exception of "use Net::DNS;" missing at the start, works for me, v5.6.1.635 on win2k. > The return