|
|||||||
| Notices |
| IP Questions Post all of your general IP related questions here. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Junior Member
Join Date: Aug 2008
Posts: 2
![]() |
When i go to www.whatismyip.com it show:
213.239.***.234 Earlier it was: 85.221.***.239 What happened? I've never seen any IP that start with 213 before, thanks in advance. btw: Earlier I maanged to host websites and Ventrilo, now I can't |
|
|
|
|
#2 |
|
Administrator
Join Date: May 2008
Location: Pigeon Forge, TN
Posts: 858
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Hi Zoby,
Your ISP could be growing and adding new IP blocks for its users. It's very possible for the blocks to be that far apart as well. 81.x.x.x vs. 213.x.x.x and assigned to the same ISP to dole out to their users. Brian |
|
|
|
|
#3 |
|
Junior Member
Join Date: Aug 2008
Posts: 2
![]() |
I still can't get it to work..
anyone else know what the matter is? |
|
|
|
|
#4 | |
|
Junior Member
Join Date: Aug 2008
Posts: 2
![]() |
Quote:
Try refresh the page or reload the page (ctrl shift refresh/reload] |
|
|
|
|
|
#5 |
|
Super Moderator
|
Guys
I know this is kind of technical - but here's some Perl code to convert ip addresses to names, and vice versa. It's called 'hosty.pl' Code:
#!/usr/bin/perl -w
use Socket;
my $host = shift or die "hosty <address>\n" ;
if ( $host =~m/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/) {
$address = inet_aton($host) ;
$A = gethostbyaddr($address,AF_INET) ;
} else {
$address = gethostbyname($host) ;
$A = inet_ntoa($address) ;
}
print "$host = $A\n" ;
Code:
C:\>hosty 69.3.28.41 69.3.28.41 = h-69-3-28-41.snvacaid.dynamic.covad.net C:\>hosty h-69-3-28-41.snvacaid.dynamic.covad.net h-69-3-28-41.snvacaid.dynamic.covad.net = 69.3.28.41 C:\> Unix affectionados probably know the 'whois' command which reveals lots of stuff about an IP address: Code:
# 431 /Users/rmills> whois 69.3.28.41 OrgName: Covad Communications Co. OrgID: CVAD Address: 2510 Zanker Rd. City: San Jose StateProv: CA PostalCode: 95131 Country: US ReferralServer: rwhois://rwhois.covad.net:4321 NetRange: 69.3.0.0 - 69.3.255.255 CIDR: 69.3.0.0/16 NetName: NETBLK-COVAD-IP-4-NET NetHandle: NET-69-3-0-0-1 Parent: NET-69-0-0-0-0 NetType: Direct Allocation NameServer: NS3.COVAD.COM NameServer: NS4.COVAD.COM Comment: RegDate: 2002-09-20 Updated: 2004-03-11 RAbuseHandle: CART-ARIN RAbuseName: Covad abuse reporting team RAbusePhone: +1-703-376-2830 RAbuseEmail: abuse-isp@covad.com RTechHandle: ZC178-ARIN RTechName: Admin RTechPhone: +1-888-801-6285 RTechEmail: noc-ipservices@covad.com OrgAbuseHandle: CART-ARIN OrgAbuseName: Covad abuse reporting team OrgAbusePhone: +1-703-376-2830 OrgAbuseEmail: abuse-isp@covad.com OrgNOCHandle: CIN-ARIN OrgNOCName: COVAD IP NOC OrgNOCPhone: +1-888-801-6285 OrgNOCEmail: noc-ipservices@covad.com OrgTechHandle: ZC178-ARIN OrgTechName: Admin OrgTechPhone: +1-888-801-6285 OrgTechEmail: noc-ipservices@covad.com # ARIN WHOIS database, last updated 2008-08-27 19:10 # Enter ? for additional hints on searching ARIN's WHOIS database. # 432 /Users/rmills> Anyway, if you find your IP address changing significantly, use hosty nn.nn.nn.nn to find out the DNS name of the server. And of course, unless there's something very strange in the wires, you'll find you're ISP's DNS name is consistent. |
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|