in reply to Re^4: arp request forging
in thread arp request forging

Hmmm... well since ARP isn't an IP type but sits directly on top of the ethernet layer, you need to create a raw ethernet packet. I've never used Net::RawIP, but a quick look at the documentation seems to imply the ethset, ethsend, and/or send_eth_frame methods may be what you need. You'll need to construct the raw ARP packet yourself.

Dave.

Replies are listed 'Best First'.
Re^6: arp request forging
by goony (Initiate) on Jun 04, 2004 at 07:49 UTC
    Yes, I done it. But the problem is that with this module, I I can't specify if the arp packet is "request" or a "reply".
      But the problem is that with this module, I I can't specify if the arp packet is "request" or a "reply"
      See RFC 826.

      Dave.