<" codepage="936"%>
<html>
<head>
<title>untitled document</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<%
dim finishgetip,showip,allip
////////////////////////////////////////////////////////////////////////////////////////
程序还不是很精简,以后再修改
本程序所用的数据库为– “冯志宏”– 所写的–“追捕”–软件中所带ip数据库和
“国华软件 guohua soft”的作者 –“冯国华”—所写的“全球ip地址分配表.chm”合二为一得到的
感谢“冯志宏”和“冯国华”提供的数据
数据库中还有不少的重复ip地址,希望有心人能将其删除,减小数据库
我的程序写的还很笨拙,希望大家能多提意见,多多交流,谢谢!
////////////////////////////////////////////////////////////////////////////////////////
解决思路:
取得的客户端ip一般是202.11.25.1这种,而数据库中的ip格式为202.011.025.001,这就需要将取得的
客户端ip转换为与数据库中ip一样的格式
因为目前我们所用的ip是分为4段,每段3位,中间以“.”分隔
所以我的思路是将客户端ip以“.”符号分割为4段,即202/11/25/1
然后再分别核对每一段,如果是3位,则不变;如不足3位,为2位,该段前补1个0,为1,同理,则补2个0
得到格式化后的ip后,去掉ip的最后一段,即取包括“.”的前11位,与数据库中的startip字段的前11位相比较,查找相同的值
因为从数据库中可以看到,startip和endip的前三段都是一样的,而最后一段不过是内部子网地址,可以去掉
所以只要取startip或endip的任意一个字段的前11位与客户端ip的前11位相比较就可以查到正确的所在地
/////////////////////////////////////////////////////////////////////////////////////////
function checkip_trueip()
取客户端真实ip
getclientip = request.servervariables("http_x_forwarded_for") 如果客户端用了代理服务器,则用request.servervariables("remote_addr")方法只能得到空值,则应该用servervariables("http_x_forwarded_for")方法
if getclientip = "" then
getclientip = request.servervariables("remote_addr")如果客户端没用代理,则request.servervariables("http_x_forwarded_for")得到是空值,应该用request.servervariables("remote_addr")方法
end if
checkip_trueip = getclientip
end function
/////////////////////////////////////////////////////////////////////////////
function getaccessrecordset(db,sql,mark,read)取得recordset对象
set conn=getaccessconn(db)输入参数为db-数据库的相对路径,sql-sql语句,mark,read为数据库读取方式,1,1为只读,1,3为读写
constr="provider=microsoft.jet.oledb.4.0;"&"data source="&server.mappath(db)
conn.open constr
set getaccessrecordset=server.createobject("adodb.recordset")
getaccessrecordset.open sql,conn,mark,read
end function
//////////////////////////////////////////////////////////////////////////
function getaccessconn(db)取得connection对象
set getaccessconn=server.createobject("adodb.connection")
constr="driver={microsoft access driver (*.mdb)};dbq="&server.mappath("allcon/#bbsall.mdb")
constr="provider=microsoft.jet.oledb.4.0;"&"data source="&server.mappath(db)
getaccessconn.open constr
end function
/////////////////////////////////////////////////////////////////////////
dim getip
getip=(trim(request.servervariables("remote_addr")))从客户端获取ip
getip=(trim(request.querystring("comes"))) 自己输入ip测试
response.write(getip&"<br>")
////////////////////////////////////////////////////////////////////////
function checkip_locations(checkstring) 返回ip中分隔字符的位置函数
checkip_locations=instr(checkstring,".") 将位置的值赋予给函数
end function
///////////////////////////////////////////////////////////////////////
以下函数为分割ip,取得每次分割后“.”符号右边的ip剩余的字符串
function checkip_left(checkstring)
locations_left=checkip_locations(checkstring) 得到在ip剩余的字符串中“.”第一次出现的位置
iplength_left=len(checkstring) 取得ip剩余的字符串的长度
divide_locations_left=iplength_left-locations_left 取得在ip剩余的字符串中“.”第一次出现的位置,从右往左数是多少位
ipstr_left=right(checkstring,divide_locations_left) 取得本次分割后,“.”符号右边的ip剩余的字符串
checkip_left=ipstr_left 将上面得到的字符串赋给函数
end function
///////////////////////////////////////////////////////////////////////
以下函数为分割ip,取得每次分割后“.”符号左边的ip字符串,即将ip分为四段,每一段的字符串
function checkip_right(checkstring)
locations_right=checkip_locations(checkstring) 取得在ip中“.”第一次出现的位置
iplength_right=len(checkstring) 取得ip字符串长度
divide_locations_right=iplength_right-locations_right 取得在ip剩余的字符串中“.”第一次出现的位置,从右往左数是多少位
ipstr11=trim(replace(left(checkstring,locations_right),".","")) 将得到的“.”左边的字符串去掉"."符号
如果ip分为4段后每一段不足3位则补0
if len(ipstr11)="2" then ipstr11="0"&ipstr11
if len(ipstr11)="3" then ipstr11=ipstr11
if len(ipstr11)="1" then ipstr11="00"&ipstr11
checkip_right=ipstr11 得到“.”符号之前的字符串,即本次分割后得到的ip分割为四段后其中的一段
end function
//////////////////////////////////////////////////////////////////////
检查ip是否为内部网ip
我写的判断是以:127.0.0.0-127.xxx.xxx.255和192.0.0.0-192.xxx.xxx.255为依据,如果为这二者,则是内部网ip,反之为外部网
判断内部ip的依据是什么,我也不清楚,所以这里要高手多多指点,并加以修正,与我联系
function checkiplocal(checkstring)
dim re1
set re1=new regexp 取得正则表达式对象
re1.pattern中的表达式为,内部网的ip应为127或192开头,中间为0-9中任意1-3个数字加"."组成一段
re1.pattern="^(127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})|(192\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})$"
re1.global=false
re1.ignorecase=false
checkiplocal=re1.test(checkstring)
set re1=nothing
end function
//////////////////////////////////////////////////////////////////////
function checkip_remote(checkstring)
dim iplength ip字符串的长度
dim locations "."字符出现的位置
iplength=len(checksting)
locations=instr(checkstring,".") 从左到右检索“.”符号在ip字符串中第一次出现的位置
以“.”字符将ip分割为4段
locations2=iplength-locations
ipstring1=left(checkstring,locations)
ipstring2=right(checkstring,locations2)
end function
//////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
ipinfo_local="您的ip是内部网ip!"
ipinfo_remote="外部网ip!"
getip=checkip_trueip()
currentip=checkiplocal(getip) 调用checkiplocal()函数对得到的ip进行检查,确定是内部网地址还是外部网地址
if currentip=true then测试代码
response.write(ipinfo_local)
if currentip=true then 为假
response.write(ipinfo_local)说明为内部网ip
else
进行转换
以下为循环提取并按位补0将ip分为4段
locations=checkip_locations(getip)取得“.”在第一次分割前在ip中第一次出现的位置
iplength=len(getip) 取得客户端ip的长度
divide_locations=iplength-locations 取得将客户端ip从右向左数到ip从左往右数第一个“.”的位置
ipstr1=trim(replace(left(getip,locations),".",""))
ipstr2=right(getip,divide_locations)取得第一次分割后客户端右边剩下的数值
如果ip分为4段后每一段不足3位则补0
if len(ipstr1)="2" then ipstr1="0"&ipstr1 长度为二,不足三位,在字符串之前补一个0
if len(ipstr1)="3" then ipstr1=ipstr1 据上类推
if len(ipstr1)="1" then ipstr1="00"&ipstr1 这时的ipstr1为ip的第一段
ipstr12=checkip_right(ipstr2) 这时的ipstr12为ip的第二段
ipstr122=checkip_left(ipstr2)
ipstr13=checkip_right(ipstr122) 这时的ipstr13为ip的第三段
ipstr14=checkip_left(ipstr122) 这时的ipstr14为ip的第四段
if len(ipstr14)="1" then ipstr14="00"&ipstr14 对得到的ip的第四段进行补0,此步骤可不要
if len(ipstr14)="2" then ipstr14="0"&ipstr14
if len(ipstr14)="3" then ipstr14=ipstr14
response.write ipstr1&"<br>" 写出ip分割后的每段的值
response.write ipstr12&"<br>"
response.write ipstr13&"<br>"
response.write ipstr14
allip=ipstr1&"."&ipstr12&"."&ipstr13&"."&ipstr14
finishgetip=left(allip,11)
dim ipaddr,iplocal,sqls
以下sql语句为提取startip字段左边11位值是否等于客户端ip的左边的11位的值
sqls="select country_state,areauser from ip where left(startip,11)="&finishgetip&""
set rs=getaccessrecordset("#worldip.mdb",sqls,"1","1") 得到查询值
if rs.eof then 如果没找到与客户端ip相等的值
showip=checkip_trueip() 把客户端ip赋予showip
ipaddr="未知地区" 国家或省份
iplocal="未知地点" 具体的地方
else
showip=checkip_trueip()
ipaddr=rs("country_state")
iplocal=rs("areauser")
end if
response.write("您的ip是:"&showip&" ")
response.write("您来自:"&ipaddr&" ")
response.write("您是:"&iplocal)
rs.close
set rs=nothing
%>
<%="您的ip是:"&showip&" "%>
<%="您来自:"&ipaddr&" "%>
<%="您是:"&iplocal&"<br>"%>
如果ip地址有错误,请与我联系,或下载数据库更正,谢谢!<br>
<table width="760" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="203"><a href="script56.rar">下载script56.chm</a>–>1.34m</td>
<td width="548">简介:microsoft的帮助文档,有vbscript语法,jscript语法,正则表达式 </td>
<td width="3"> </td>
<td width="6"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><a href="ipsearch.rar">下载asp全球ip地址搜索程序</a></td>
<td>asp+access 大小401k;格式rar</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><font color="#000099"> </font> <font color="#0000ff"> </font></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>如果你的ip是未知,如果你愿意,请提交你的所在地:</td>
<td>
<form name="form1" method="post" action="postip.asp">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="21%"> 省份: </td>
<td width="44%">
<input type="text" name="country_state">
</td>
<td width="35%"> </td>
</tr>
<tr>
<td width="21%">具体所在地或是什么网的用户:</td>
<td width="44%">
<input type="text" name="areauser">
</td>
<td width="35%">例如:北京清华大学或北京网通用户</td>
</tr>
<tr>
<td width="21%"> </td>
<td width="44%">
<input type="hidden" name="startip" value="<%=finishgetip&".000"%>">
<input type="hidden" name="endip" value="<%=finishgetip&".255"%>">
</td>
<td width="35%"> </td>
</tr>
<tr>
<td width="21%"> </td>
<td width="44%">
<input type="submit" name="submit" value="提交">
</td>
<td width="35%"> </td>
</tr>
</table>
</form>
</td>
<td> </td>
<td> </td>
</tr>
</table>
<%
end if
%>
</body>
</html>