当前位置:编程学习 > JAVA >>

Java如何处理ICMP报文的收发

前言

    java是跨平台语言,一般来说对网络的操作都在IP层以上,也就是只能对tcp/udp进行操作,当然也可以设置部分tcp/udp的option,如果想再往IP层或者数据link层操作就无能为力了,必须依靠jni使用本地OS的socket部分接口。很幸运,我在知道有winpcap的时候同时也知道有人在开发jpcap,此包可以方便的操作网络底层应用协议,以下详细描述。

    实施步骤

    下载需要的包http://netresearch.ics.uci.edu/kfujii/jpcap/doc/index.html上可以下到最新的jpcap,你只需要把lib中的dll文件拷贝到jre的bin目录,同时lib中的jar文件拷贝到jre中的lib/ext目录下就安装完整,当然你可以使用exe安装包进行安装,这样会更加的简单。

    编码你可以使用任何你喜欢的ide工具,但是必须把jpcap.jar加到classpath中,否则无法编译通过。icmp有很多类型,当前仅用echo类型为例,也就是我们通过用的ping工具所产生的网络行为。以下为代码详细。



    1. import java.net.InetAddress;
    2. import jpcap.JpcapCaptor;
    3. import jpcap.JpcapSender;
    4. import jpcap.NetworkInte易做图ce;
    5. import jpcap.packet.EthernetPacket;
    6. import jpcap.packet.ICMPPacket;
    7. import jpcap.packet.IPPacket;
    8. class ICMP
    9. {
    10.     public static void main(String[] args) throws java.io.IOException{
    11.         NetworkInte易做图ce[] devices = JpcapCaptor.getDeviceList();
    12.         if(args.length<1){
    13.             System.out.println("Usage: java ICMP ");
    14.             for(int i=0;i                System.out.println(i+":"+devices[i].name+"("+devices[i].description+")");
    15.             System.exit(0);
    16.         }
    17.         int index=Integer.parseInt(args[0]);
    18. //开启网络设备
    19.         JpcapCaptor captor=JpcapCaptor.openDevice(devices[index],2000,false,3000);
    20. //设置只过滤 icmp包
    21.         captor.setFilter("icmp",true);
    22.         JpcapSender sender=captor.getJpcapSenderInstance();
    23.         
    24.         ICMPPacket p=new ICMPPacket();
    25.         p.type=ICMPPacket.ICMP_ECHO;
    26.         p.seq=(short)0x0005;
    27.         p.id=(short)0x0006;
    28.         
    29.         p.setIPv4Parameter(0,false,false,false,0,false,false,false,0,1010101,100,IPPacket.IPPROTO_ICMP,
    30.             InetAddress.getByName("192.168.1.30"),InetAddress.getByName("192.168.1.1"));
    31.         p.data="abcdefghijklmnopqrstuvwabcdehghi".getBytes();
    32.         EthernetPacket ether=new EthernetPacket();
    33.         ether.frametype=EthernetPacket.ETHERTYPE_IP;
    34. //填写自己和对方的mac地址,必须要正确填写,如果有错误将无法收到回包
    35.         ether.dst_mac=new byte[]{(byte)0x00,(byte)0x03,(byte)0x2d,(byte)0x02,(byte)0xd1,(byte)0x69};
    36.         ether.src_mac=new byte[]{(byte)0x08,(byte)0x00,(byte)0x46,(byte)0xad,(byte)0x3c,(byte)0x12};
    37.         p.datalink=ether;
    38.         
    39.         sender.sendPacket(p);
    40.         System.out.println("send...");
    41.         ICMPPacket rp= null;
    42.         while(true){
    43.             rp=(ICMPPacket)captor.getPacket();
    44.             if(rp==null){
    45.                 throw new IllegalArgumentException("no rcv icmp echo reply");
    46.             }else
    47.             {
    48.                 System.out.println("rcv icmp echo reply");
    49.                 return ;
    50.             }
    51.         }
    52.     }
    53. }
  • 补充:软件开发 , Java ,
    CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
    部分文章来自网络,