Wrap a tun interface in a tap interface. This is useful if you need to run a tool on a tun device that depends on a layer 2 raw socket, but doesn't actually need layer 2 access. The ethernet header is transparently stripped for egress and added for ingress. It also emulates arp to ensure the kernel can use the interface correctly.
```
burritun tun0 burritun0 &
ip a del 192.0.2.4/24 dev tun0
ip a add 192.0.2.4/24 dev burritun0
fg ```
GPLv3+