Java如何处理ARP报文的收发

文章作者 100test 发表时间 2007:03:14 16:26:45
来源 100Test.Com百考试题网


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中,否则无法编译通过,以下为代码详细



    1. import java.net.Inet4Address.
    2. import java.net.InetAddress.
    3. import java.util.Arrays.
    4. import jpcap.*.
    5. import jpcap.packet.*.
    6. public class ARP {
    7. public static byte[] arp(InetAddress ip) throws java.io.IOException{
    8. //发现本机器的网络接口
    9. int i.
    10. NetworkInterface[] devices=JpcapCaptor.getDeviceList().
    11. NetworkInterface device=null.
    12. for (i = 0. i < devices.length. i )
    13. {
    14. System.out.println(devices[i].description).
    15. }
    16. device = devices[2].//我的机器是第三个进行网络通信
    17. if(device==null)
    18. throw new IllegalArgumentException(ip " is not a local address").
    19. //开启网络接口
    20. JpcapCaptor captor=JpcapCaptor.openDevice(device,2000,false,3000).
    21. captor.setFilter("arp",true).
    22. JpcapSender sender=captor.getJpcapSenderInstance().
    23. InetAddress srcip=null.
    24. //获得接口地址,这里考虑到一网络接口可能有多地址
    25. for(i = 0. i < device.addresses.length . i )
    26. if(device.addresses[i].address instanceof Inet4Address){
    27. srcip=device.addresses[i].address.
    28. break.
    29. }
    30. //填写全1广播mac目标地址
    31. byte[] broadcast=new byte[]{(byte)255,(byte)255,(byte)255,(byte)255,(byte)255,(byte)255}.
    32. ARPPacket arp=new ARPPacket().
    33. arp.hardtype=ARPPacket.HARDTYPE_ETHER.
    34. arp.prototype=ARPPacket.PROTOTYPE_IP.
    35. arp.operation=ARPPacket.ARP_REQUEST.
    36. arp.hlen=6.
    37. arp.plen=4.
    38. arp.sender_hardaddr=device.mac_address.
    39. arp.sender_protoaddr=srcip.getAddress().
    40. arp.target_hardaddr=broadcast.
    41. arp.target_protoaddr=ip.getAddress().
    42. EthernetPacket ether=new EthernetPacket().
    43. ether.frametype=EthernetPacket.ETHERTYPE_ARP.
    44. ether.src_mac=device.mac_address.
    45. ether.dst_mac=broadcast.
    46. arp.datalink=ether.
    47. //发送
    48. sender.sendPacket(arp).
    49. //处理回复
    50. while(true){
    51. ARPPacket p=(ARPPacket)captor.getPacket().
    52. if(p==null){
    53. throw new IllegalArgumentException(ip " is not a local address").
    54. }
    55. if(Arrays.equals(p.target_protoaddr,srcip.getAddress())){
    56. return p.sender_hardaddr.
    57. }
    58. }
    59. }
    60. public static void main(String[] args) throws Exception{
    61. int i.
    62. if(args.length<1){
    63. System.out.println("Usage: java ARP ").
    64. }else{
    65. byte[] mac=ARP.arp(InetAddress.getByName(args[0])).
    66. for (i = 0.i < mac.length. i )
    67. System.out.print(Integer.toHexString(mac[i]&.0xff) ":").
    68. System.out.println().
    69. System.exit(0).
    70. }
    71. }
    72. }


  • 相关文章


    Java语言特点及开发工具JDK
    Java如何处理ICMP报文的收发
    Java如何处理ARP报文的收发
    数据库驱动程序测试的建议
    用户登录的验证完整程序
    澳大利亚华人论坛
    考好网
    日本华人论坛
    华人移民留学论坛
    英国华人论坛