Problem
1: Get the client's IP address
/************* IP **************/
DECLARE @ip varchar (varchar), @hst (a), @sql varchar (100)
DECLARE @str varchar (100)
Set @str = ' PING ' +host_name ()
CREATE TABLE #tmp (AA varchar (200))
Insert #tmp exec master. xp_cmdshell @str
Select top 1 @ip = replace (Aa,charindex (': ', AA)-1), ' Reply from ', '
From #tmp where AA is like ' Reply from%:% '
drop table #tmp
Select @ip
2: Get the physical address of the network card
CREATE table #tb (re varchar (255))
INSERT into #tb exec master. xp_cmdshell ' Ipconfig/all '
Select Network Card Physical Address =substring (Re,charindex (': ', re) +1,255) from #tb where re like '%physical addresses ... . :%'
drop table #tb
3: The IP address segment is converted to three bits, separated by dots.
Create function GetIP (@a varchar (15))
Returns varchar (15)
As
Begin
DECLARE @s varchar (15)
Set @s = '
While CHARINDEX ('. ', @a) > 0
Begin
Set @s = @s + Right ("+" + Left (@a,charindex ('. ', @a)), 4)
Set @a = Right (@a,len (@a)-charindex ('. ', @a))
End
Set @s = @s + right (' + ' + @a,3)
Return @s
End
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.