IP Adresse überpruefen

Tassi

Grünschnabel
Hi Leutz,

nach längere Zeit bin ich auch mal wieder hier. Habe folgendes Problem. Ich möchte ein kleines Prog schreiben, wobei ich folgenden Frage habe.

Weiß jemand wie man einen Ping wie über die Dosshell. z.B ping 192.168.0.1 in VB ausführen kann und gleichzeitig eine Rückmeldung bekommt, ob der Host erreichbar war.

Vielleicht weiß ja jemand etwas dadrüber. Wünsche euch allen noch einen schönen Abend.

Gruß
Tassi
 
soviel ich weiß dürfte das wenn überhaupt sehr schwer zu realisieren sein.
Die Eingabeaufforderung über das Shell aufzurufen ist ja kein Problem, aber dann etwas in die Eingabeaufforderung zu schreiben bzw. das Programm Befehle ausführen zu lassen dürfte ziemlich schwer sein.

Ich glaube das Problem wurde hier schonmal angesprochen und konnte nicht gelöst werden bzw. ist mit VIsual Basic evtl. nicht lösbar.
 
Du könntest den Ping selbst programmieren ohne das Ping-Programm von Windows, oder du liest dessen Ausgabe ein.
Hier in der MSDN gibt es einen Artikel wie man von Kommandozeilenprogrammen die Eingabe-/Ausgabe-/Fehlerkanäle lesen kann.
 
PING

oder du frägst einfach jemanden der´s weis.

Code:
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 INADDR_NONE = &HFFFFFFFF

Public Const MAX_WSADescription = 256
Public Const MAX_WSASYSStatus = 128
Public Const MAXGETHOSTSTRUCT = 1024

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 Type hostent_async
    h_name As Long
    h_aliases As Long
    h_addrtype As Integer
    h_length As Integer
    h_addr_list As Long
    h_asyncbuffer(MAXGETHOSTSTRUCT) As Byte
End Type

Public hostent_async As hostent_async

Public Const hostent_size = 16

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
    
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" Alias "WSACleanup" () As Long

Public Declare Function GetHostName Lib "wsock32.dll" _
   Alias "gethostname" (ByVal szHost As _
    String, ByVal dwHostLen As Long) As Long
    
Public Declare Function GetHostByName Lib "wsock32.dll" _
   Alias "gethostbyname" (ByVal szHost As String) As Long
   
Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _
   (hpvDest As Any, _
    ByVal hpvSource As Long, _
    ByVal cbCopy As Long)


    Public Declare Function htonl Lib "wsock32.dll" (ByVal hostlong As Long) As Long

    Public Declare Function htons Lib "wsock32.dll" (ByVal hostshort As Long) As Integer

    Public Declare Function inet_addr Lib "wsock32.dll" (ByVal cp As String) As Long

    Public Declare Function inet_ntoa Lib "wsock32.dll" (ByVal inn As Long) As Long

    Public Declare Function ntohl Lib "wsock32.dll" (ByVal netlong As Long) As Long

    Public Declare Function ntohs Lib "wsock32.dll" (ByVal netshort As Long) As Integer


'Variablen:
'==========
Public PointerToPointer, IPLong As Long

Public Function GetHost(ByVal Host$) As Long
    Dim ListAddress As Long
    Dim ListAddr As Long
    Dim LH&, phe&
    Dim Start As Boolean
    Dim heDestHost As hostent
    Dim addrList&, repIP&


  
   Start = SocketsInitialize
    If Start = False Then GetHost = 0: MsgBox ("Fehler bei der SocketInitialisierung!"): Exit Function

   LH = inet_addr(Host$)
'   If LH = INADDR_NONE Then
'    repIP = htonl(LH)
'   Else
  repIP = LH
      If LH = INADDR_NONE Then
      phe = GetHostByName(Host$)

        If phe <> 0 Then

            CopyMemory heDestHost, ByVal phe, hostent_size

            CopyMemory addrList, ByVal heDestHost.hAddrList, 4

            CopyMemory repIP, ByVal addrList, heDestHost.hLen
        Else
         MsgBox ("GetHostByName lieferte ungültiges Ergebnis!")
         GetHost = INADDR_NONE
         Exit Function
        End If
   
'     a = GetHostByName(Host)
'     ' Copy Winsock structure to the VisualBasic structure
'
'    CopyMemory hostent_async.h_name, ByVal PointerToPointer, Len(hostent_async)
'
'    ListAddress = hostent_async.h_addr_list        ' Get the ListAddress of the Address List
'
'    CopyMemory ListAddr, ByVal ListAddress, 4      ' Copy Winsock structure to the VisualBasic structure
'    CopyMemory IPLong, ByVal ListAddr, 4           ' Get the first list entry from the Address List
    'CopyMemory GIP, ByVal ListAddr, 4

   ' RecWin.Text = Trim$(CStr(Asc(IPLong.Byte4)) + "." + CStr(Asc(IPLong.Byte3)) _
    '    + "." + CStr(Asc(IPLong.Byte2)) + "." + CStr(Asc(IPLong.Byte1)))
   
   End If
   Form1.Text4.Text = CStr(repIP)
   GetHost = repIP
End Function


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 buf too_small"
      Case IP_DEST_NET_UNREACHABLE:  Msg = "ip dest net unreachable"
      Case IP_DEST_HOST_UNREACHABLE: Msg = "ip dest host unreachable"
      Case IP_DEST_PROT_UNREACHABLE: Msg = "ip dest prot unreachable"
      Case IP_DEST_PORT_UNREACHABLE: Msg = "ip dest port unreachable"
      Case IP_NO_RESOURCES:          Msg = "ip no resources"
      Case IP_BAD_OPTION:            Msg = "ip bad option"
      Case IP_HW_ERROR:              Msg = "ip hw_error"
      Case IP_PACKET_TOO_BIG:        Msg = "ip packet too_big"
      Case IP_REQ_TIMED_OUT:         Msg = "ip req timed out"
      Case IP_BAD_REQ:               Msg = "ip bad req"
      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 addr 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 addr 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 = CStr(Status) & "   [ " & 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
   Dim a
   
   sDataToSend = Trim$(Form1.Text3.Text)
   dwAddress = GetHost(szAddress)
   'dwAddress = AddressStringToLong(szAddress)
   
   hPort = IcmpCreateFile()
   
   If IcmpSendEcho(hPort, _
                   dwAddress, _
                   sDataToSend, _
                   Len(sDataToSend), _
                   0, _
                   ECHO, _
                   Len(ECHO), _
                   PING_TIMEOUT) Then
   
        '
         Ping = ECHO.RoundTripTime
   Else: Ping = ECHO.Status * -1
   End If
                       
   Call IcmpCloseHandle(hPort)
   a = SocketsCleanup
End Function
   

Function AddressStringToLong(ByVal Tmp As String) As Long

   Dim i As Integer
   Dim parts(1 To 4) As String
   
   i = 0
   
  '
   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
   
  '
   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

Warum beantwortet niemand meine Fragen?
 
da fehlt noch ein Beispiel zu... ;-)

Private Sub Command1_Click()

Dim ECHO As ICMP_ECHO_REPLY
Dim pos As Integer

'"die" Ping-Funktion aufrufen:
Call Ping(Trim$(Text2.Text), ECHO)

'Ergebnisse anzeigen
Text1(0) = GetStatusCode(ECHO.Status)
Text1(1) = ECHO.Address
Text1(2) = ECHO.RoundTripTime & " ms"
Text1(3) = ECHO.DataSize & " bytes"

If Left$(ECHO.Data, 1) <> Chr$(0) Then
pos = InStr(ECHO.Data, Chr$(0))
Text1(4) = Left$(ECHO.Data, pos - 1)
End If

Text1(5) = ECHO.DataPointer

End Sub
 

Anhänge

  • sample.jpg
    sample.jpg
    33 KB · Aufrufe: 100
Zurück