You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
drv-netif-netmap is a netmap
network interface for rump kernels. The combined
result is a TCP/IP stack doing packet I/O via netmap.
Build instructions
If your netmap headers are not in /usr/include, set the env
variable NETMAPINCS to point to the right place, e.g.
export NETMAPINCS=/home/pooka/netmap/sys. Then run:
Go to examples and compile with make. Then configure one TCP/IP
stack with the address 1.2.3.4, another with the address 1.2.3.5, and
connect them to each other via the VALE virtual switch:
./netmapcat vale:1 1.2.3.4 listen 1
./netmapcat vale:2 1.2.3.5 connect 1.2.3.4 1
Observe whatever you type in the latter terminal magically(?) appear in
the other one.
By replacing vale:x with a real interface name, e.g. ix0, you should
be able to bind to a physical network interface and access the wire.