DESCR 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. ARP-catch
  2. 1997 Thomas H. Ptacek
  3. ------------------------------------------------------------------------
  4. This is a 4.4BSD program that implements, in userland, third-party
  5. proxy ARP. In a nutshell, this lets you proxy-ARP an arbitrary IP
  6. address to an arbitrary MAC address, from any machine on the network.
  7. This is useful if your router doesn't do proxy ARP, or does it only
  8. in an all-or-none fashion.
  9. This code will not work outside of 4.4BSD (it relies on BPF). Furthermore,
  10. it won't run on most 4.4BSD operating systems, because a problem with the
  11. standard BPF implementation (try spoofing your source ethernet frame
  12. address on NetBSD). I've made available an LKM that "fixes" the problem on
  13. FreeBSD 3.0; you can find it at http://www.enteract.com/~tqbf.
  14. There's not much to document here. The program is a daemon, and reads
  15. a config file. The config file consists of "router" and "proxy" lines; a
  16. "router" line gives a symbolic name for a MAC address, ie:
  17. router gateway de:ad:be:ef:ca:fe
  18. ... and a "proxy" line maps an IP address to a router name or a MAC
  19. address, ie:
  20. proxy 10.100.200.1 gateway
  21. proxy 10.100.200.2 ab:ad:ca:fe:00:11
  22. This is fairly esoteric stuff; read the code if you need to know more.
  23. If you have problems, questions, comments, bitches, etc, feel free to mail
  24. me at <tqbf@secnet.com>