ENet is a pure Erlang network stack that can be used to encode and decode a variety of common packet formats.
The project includes a port program that can be used to send and receive ethernet frames via the /dev/tap0 device.
- Mac OS X
libevent, OS X 10.6.1 (probably compatible with other versions), thetuntaposxdriver ( http://tuntaposx.sourceforge.net ) loaded,sudo.- Linux
libevent, the
tunmodule loaded, thetunctlprogram (usually in theuml-utilitiespackage),sudo``.
- Mac OS X
The
enet_tapport program. Takes a mandatory option-fto specify which tap device to use. (normally "/dev/tap0")- Linux
The
enet_tapport program. Takes a mandatory-iargument that specifies which tap device to use. (normally "tap0")
You'll need to edit the Makefile to set the appropriate CFLAGS and LDFLAGS for your machine and erts (32 or 64 bit build, location of libevent headers and libraries, ...).
For ease of use, you should probably change the ownership of /dev/tapN to yourself.
You should create a tap device that you can open as your user. The easiest way to do this is to install the tunctl program (in the uml-utilities package on debian systems), and then create the device:
tunctl -u yourusername -t tap0Enet currently uses the ifconfig command to configure the operating system side of the tap device. This is usually a privileged operation, so we need to configure sudo to allow erlang to do this without a password.
Add the following lines to /etc/sudoers:
Cmnd_Alias ENET = /sbin/ifconfig tap0 *
yourusername ALL=(ALL) NOPASSWD: ENETFrom an erlang shell (erl -boot start_sasl -pa ebin):
1> {ok, Arp} = enet_arp_responder:start(),
enet_arp_responder:publish(Arp, enet_eth_iface:default_mac(),
<<192,168,2,2>>),
{ok, Eth} = enet_eth_iface:start("tap0", "192.168.2.1/24 up"),
{ok, Dumper} = enet_if_dump:attach(Eth),
enet_arp_responder:attach(Arp, Eth).You should now see decoded traffic in the erlang shell. If you ping the IP address of the erlang interface 192.168.2.2 in the example, you should see ping replies and an arp entry (arp -na):
? (192.168.2.2) at 0:0:0:aa:bb:cc on tap0 ifscope [ethernet]