摘要:[VB6] 使用 ICMP 來 ping
法一:利用WIN32 API
http://support.microsoft.com/kb/300197
這是microsoft的官網裡面有教你如何使用ICMP來ping一個位置,其主要是利用ICMP通訊協助定API寫的,其中包含了不少API的宣告程式又臭又長,請看以下範例
'in Module
Option Explicit
'免不了的常數宣告
Public Const IP_STATUS_BASE = 11000
Public Const IP_SUCCESS = 0
Public Const IP_BUF_TOO_SMALL = (11000 + 1)
Public Const IP_DEST_NET_UNREACHABLE = (11000 + 2)
Public Const IP_DEST_HOST_UNREACHABLE = (11000 + 3)
Public Const IP_DEST_PROT_UNREACHABLE = (11000 + 4)
Public Const IP_DEST_PORT_UNREACHABLE = (11000 + 5)
Public Const IP_NO_RESOURCES = (11000 + 6)
Public Const IP_BAD_OPTION = (11000 + 7)
Public Const IP_HW_ERROR = (11000 + 8)
Public Const IP_PACKET_TOO_BIG = (11000 + 9)
Public Const IP_REQ_TIMED_OUT = (11000 + 10)
Public Const IP_BAD_REQ = (11000 + 11)
Public Const IP_BAD_ROUTE = (11000 + 12)
Public Const IP_TTL_EXPIRED_TRANSIT = (11000 + 13)
Public Const IP_TTL_EXPIRED_REASSEM = (11000 + 14)
Public Const IP_PARAM_PROBLEM = (11000 + 15)
Public Const IP_SOURCE_QUENCH = (11000 + 16)
Public Const IP_OPTION_TOO_BIG = (11000 + 17)
Public Const IP_BAD_DESTINATION = (11000 + 18)
Public Const IP_ADDR_DELETED = (11000 + 19)
Public Const IP_SPEC_MTU_CHANGE = (11000 + 20)
Public Const IP_MTU_CHANGE = (11000 + 21)
Public Const IP_UNLOAD = (11000 + 22)
Public Const IP_ADDR_ADDED = (11000 + 23)
Public Const IP_GENERAL_FAILURE = (11000 + 50)
Public Const MAX_IP_STATUS = 11000 + 50
Public Const IP_PENDING = (11000 + 255)
Public Const PING_TIMEOUT = 200
Public Const WS_VERSION_REQD = &H101
Public Const WS_VERSION_MAJOR = WS_VERSION_REQD \ &H100 And &HFF&
Public Const WS_VERSION_MINOR = WS_VERSION_REQD And &HFF&
Public Const MIN_SOCKETS_REQD = 1
Public Const SOCKET_ERROR = -1
Public Const MAX_WSADescription = 256
Public Const MAX_WSASYSStatus = 128
Public Type ICMP_OPTIONS
Ttl As Byte
Tos As Byte
Flags As Byte
OptionsSize As Byte
OptionsData As Long
End Type
Dim ICMPOPT As ICMP_OPTIONS
Public Type ICMP_ECHO_REPLY
Address As Long
status As Long
RoundTripTime As Long
DataSize As Integer
Reserved As Integer
DataPointer As Long
Options As ICMP_OPTIONS
Data As String * 250
End Type
Public Type HOSTENT
hName As Long
hAliases As Long
hAddrType As Integer
hLen As Integer
hAddrList As Long
End Type
Public Type WSADATA
wVersion As Integer
wHighVersion As Integer
szDescription(0 To MAX_WSADescription) As Byte
szSystemStatus(0 To MAX_WSASYSStatus) As Byte
wMaxSockets As Integer
wMaxUDPDG As Integer
dwVendorInfo As Long
End Type
Public Declare Function IcmpCreateFile Lib "icmp.dll" () As Long
Public Declare Function IcmpCloseHandle Lib "icmp.dll" _
(ByVal IcmpHandle As Long) As Long
Public Declare Function IcmpSendEcho Lib "icmp.dll" _
(ByVal IcmpHandle As Long, _
ByVal DestinationAddress As Long, _
ByVal RequestData As String, _
ByVal RequestSize As Integer, _
ByVal RequestOptions As Long, _
ReplyBuffer As ICMP_ECHO_REPLY, _
ByVal ReplySize As Long, _
ByVal Timeout As Long) As Long
'當然API也不少 >"<
Public Declare Function WSAGetLastError Lib "WSOCK32.DLL" () As Long
Public Declare Function WSAStartup Lib "WSOCK32.DLL" _
(ByVal wVersionRequired As Long, _
lpWSADATA As WSADATA) As Long
Public Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long
Public Declare Function gethostname Lib "WSOCK32.DLL" _
(ByVal szHost As String, _
ByVal dwHostLen As Long) As Long
Public Declare Function gethostbyname Lib "WSOCK32.DLL" _
(ByVal szHost As String) As Long
Public Declare Sub RtlMoveMemory Lib "kernel32" _
(hpvDest As Any, _
ByVal hpvSource As Long, _
ByVal cbCopy As Long)
Public Function GetStatusCode(status As Long) As String
Dim msg As String
Select Case status
Case IP_SUCCESS: msg = "IP Success"
Case IP_BUF_TOO_SMALL: msg = "IP Buffer Too Small"
Case IP_DEST_NET_UNREACHABLE: msg = "IP Destination Net
Unreachable"
Case IP_DEST_HOST_UNREACHABLE: msg = "IP Destination Host
Unreachable"
Case IP_DEST_PROT_UNREACHABLE: msg = "IP Destination Prot
Unreachable"
Case IP_DEST_PORT_UNREACHABLE: msg = "IP Destination Port
Unreachable"
Case IP_NO_RESOURCES: msg = "IP No Resources"
Case IP_BAD_OPTION: msg = "IP Bad Option"
Case IP_HW_ERROR: msg = "IP Hardware Error"
Case IP_PACKET_TOO_BIG: msg = "IP Packet Too Big"
Case IP_REQ_TIMED_OUT: msg = "IP Request Timed Out"
Case IP_BAD_REQ: msg = "IP Bad Request"
Case IP_BAD_ROUTE: msg = "IP Bad Route"
Case IP_TTL_EXPIRED_TRANSIT: msg = "IP TTL expired transit"
Case IP_TTL_EXPIRED_REASSEM: msg = "IP TTL expired reassem"
Case IP_PARAM_PROBLEM: msg = "IP Param_problem"
Case IP_SOURCE_QUENCH: msg = "IP Source quench"
Case IP_OPTION_TOO_BIG: msg = "IP Option Too Big"
Case IP_BAD_DESTINATION: msg = "IP Bad destination"
Case IP_ADDR_DELETED: msg = "IP Address deleted"
Case IP_SPEC_MTU_CHANGE: msg = "IP Spec MTU change"
Case IP_MTU_CHANGE: msg = "IP MTU Change"
Case IP_UNLOAD: msg = "IP Unload"
Case IP_ADDR_ADDED: msg = "IP Address Added"
Case IP_GENERAL_FAILURE: msg = "IP General Failure"
Case IP_PENDING: msg = "IP Pending"
Case PING_TIMEOUT: msg = "Ping Timeout"
Case Else: msg = "Unknown Msg Returned"
End Select
'GetStatusCode = "ICMP Code: " & CStr(status) & " [ " & msg & " ]"
GetStatusCode = "ICMP Code: " & CStr(status) & "," & "Message: " & msg
End Function
Public Function HiByte(ByVal wParam As Integer)
HiByte = wParam \ &H100 And &HFF&
End Function
Public Function LoByte(ByVal wParam As Integer)
LoByte = wParam And &HFF&
End Function
Public Function Ping(szAddress As String, ECHO As ICMP_ECHO_REPLY) As Long
Dim hPort As Long
Dim dwAddress As Long
Dim sDataToSend As String
Dim iOpt As Long
'send 32byte
sDataToSend = "爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽爽"
dwAddress = AddressStringToLong(szAddress)
Call SocketsInitialize
hPort = IcmpCreateFile()
If IcmpSendEcho(hPort, _
dwAddress, _
sDataToSend, _
Len(sDataToSend), _
0, _
ECHO, _
Len(ECHO), _
PING_TIMEOUT) Then
'the ping succeeded,
'.Status will be 0
'.RoundTripTime is the time in ms for
' the ping to complete,
'.Data is the data returned (NULL terminated)
'.Address is the Ip address that actually replied
'.DataSize is the size of the string in .Data
Ping = ECHO.RoundTripTime
Else: Ping = ECHO.status * -1
End If
Call IcmpCloseHandle(hPort)
Call SocketsCleanup
End Function
Function AddressStringToLong(ByVal tmp As String) As Long
Dim i As Integer
Dim parts(1 To 4) As String
i = 0
'we have to extract each part of the
'123.456.789.123 string, delimited by
'a period
While InStr(tmp, ".") > 0
i = i + 1
parts(i) = Mid(tmp, 1, InStr(tmp, ".") - 1)
tmp = Mid(tmp, InStr(tmp, ".") + 1)
Wend
i = i + 1
parts(i) = tmp
If i <> 4 Then
AddressStringToLong = 0
Exit Function
End If
'build the long value out of the
'hex of the extracted strings
AddressStringToLong = Val("&H" & Right("00" & Hex(parts(4)), 2) & _
Right("00" & Hex(parts(3)), 2) & _
Right("00" & Hex(parts(2)), 2) & _
Right("00" & Hex(parts(1)), 2))
End Function
Public Function SocketsCleanup() As Boolean
Dim X As Long
X = WSACleanup()
If X <> 0 Then
MsgBox "Windows Sockets error " & Trim$(Str$(X)) & _
" occurred in Cleanup.", vbExclamation
SocketsCleanup = False
Else
SocketsCleanup = True
End If
End Function
Public Function SocketsInitialize() As Boolean
Dim WSAD As WSADATA
Dim X As Integer
Dim szLoByte As String, szHiByte As String, szBuf As String
X = WSAStartup(WS_VERSION_REQD, WSAD)
If X <> 0 Then
MsgBox "Windows Sockets for 32 bit Windows " & _
"environments is not successfully responding."
SocketsInitialize = False
Exit Function
End If
If LoByte(WSAD.wVersion) < WS_VERSION_MAJOR Or _
(LoByte(WSAD.wVersion) = WS_VERSION_MAJOR And _
HiByte(WSAD.wVersion) < WS_VERSION_MINOR) Then
szHiByte = Trim$(Str$(HiByte(WSAD.wVersion)))
szLoByte = Trim$(Str$(LoByte(WSAD.wVersion)))
szBuf = "Windows Sockets Version " & szLoByte & "." & szHiByte
szBuf = szBuf & " is not supported by Windows " & _
"Sockets for 32 bit Windows environments."
MsgBox szBuf, vbExclamation
SocketsInitialize = False
Exit Function
End If
If WSAD.wMaxSockets < MIN_SOCKETS_REQD Then
szBuf = "This application requires a minimum of " & _
Trim$(Str$(MIN_SOCKETS_REQD)) & " supported sockets."
MsgBox szBuf, vbExclamation
SocketsInitialize = False
Exit Function
End If
SocketsInitialize = True
End Function
'in form1
Option Explicit
Private Sub TestPing()
Dim ECHO As ICMP_ECHO_REPLY
Dim pos As Integer
'ping an ip address, passing the
'address and the ECHO structure
Call Ping(Me.Text1.Text, ECHO)
'display the results from the ECHO structure
Me.List1.AddItem Now & " " & GetStatusCode(ECHO.status) & "," & _
"Bytes: " & ECHO.DataSize & " bytes" & "," & _
"Time: " & ECHO.RoundTripTime & " ms" _
, 0
'Me.List1.AddItem "Address: " & ECHO.Address
'Me.List1.AddItem "Responses: " & ECHO.RoundTripTime & " ms"
'Me.List1.AddItem "DataSize: " & ECHO.DataSize & " bytes"
'If Left$(ECHO.Data, 1) <> Chr$(0) Then
'pos = InStr(ECHO.Data, Chr$(0))
'Me.List1.AddItem Left$(ECHO.Data, pos - 1)
'End If
'Me.List1.AddItem ECHO.DataPointer
End Sub
Private Sub Command1_Click()
Me.Timer1.Enabled = False
End Sub
Private Sub Command2_Click()
Me.Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Me.Timer1.Enabled = True
Me.Timer1.Interval = 1000
End Sub
Private Sub Form_Unload(Cancel As Integer)
Me.Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
TestPing
End Sub
法二:利用WMI(Windows Management Instrumentation)
可愛又好用的WMI又來了,上述的功能,當然也可以利用WMI Win32_PingStatus達成其目的,MSDN裡面有詳細的說明哩!ICMP Win32 API Ping.rarhttp://msdn.microsoft.com/en-us/library/aa394350.aspx
class Win32_PingStatus
{
string Address;
uint32 BufferSize = 32;
boolean NoFragmentation = FALSE;
uint32 PrimaryAddressResolutionStatus;
string ProtocolAddress = "";
string ProtocolAddressResolved = "";
uint32 RecordRoute = 0;
boolean ReplyInconsistency;
uint32 ReplySize;
boolean ResolveAddressNames = FALSE;
uint32 ResponseTime;
uint32 ResponseTimeToLive;
string RouteRecord[];
string RouteRecordResolved[];
String SourceRoute = "";
uint32 SourceRouteType = 0;
uint32 StatusCode;
uint32 Timeout = 1000;
uint32 TimeStampRecord[];
string TimeStampRecordAddress[];
string TimeStampRecordAddressResolved[];
uint32 TimeStampRoute = 0;
uint32 TimeToLive = 80;
uint32 TypeofService = 0;
};
我個人覺得還是WMI好用多了,讚!
不過懶的寫範例,直接上網google一下,便有一堆資料了,
http://www.enterpriseitplanet.com/networking/features/article.php/1571771
以下程式碼用於vbs,要改一下才能在vb6上面run
Dim sHost 'name of Windows XP computer from which the
PING command will be initiated
Dim sTarget 'name or IP address of remote computer to which
connectivity will be tested
Dim cPingResults 'collection of instances of Win32_PingStatus
class
Dim oPingResult 'single instance of Win32_PingStatus class
sHost = "SWYNKPC-XP001"
sTarget = "192.168.12.14"
Set cPingResults = GetObject("winmgmts:
{impersonationLevel=impersonate}//" & _
sHost & "/root/cimv2"). ExecQuery("SELECT * FROM
Win32_PingStatus " & _
"WHERE Address = '" + sTarget + "'")
For Each oPingResult In cPingResults
If oPingResult.StatusCode = 0 Then
If LCase(sTarget) = oPingResult.ProtocolAddress Then
WScript.Echo sTarget & " is responding"
Else
WScript.Echo sTarget & "(" &
oPingResult.ProtocolAddress & ") is responding"
End If
Wscript.Echo "Bytes = " & vbTab &
oPingResult.BufferSize
Wscript.Echo "Time (ms) = " & vbTab &
oPingResult.ResponseTime
Wscript.Echo "TTL (s) = " & vbTab &
oPingResult.ResponseTimeToLive
Else
WScript.Echo sTarget & " is not responding"
WScript.Echo "Status code is " & oPingResult.StatusCode
End If
Next
若有謬誤,煩請告知,新手發帖請多包涵
Microsoft MVP Award 2010~2017 C# 第四季
Microsoft MVP Award 2018~2022 .NET