MTE unikernel with Mkernel+Mnet+Vifu

This commit is contained in:
swrup 2026-03-11 14:17:52 +01:00 committed by Swrup
parent 76662bf23c
commit a23e59dfca
31 changed files with 535 additions and 376 deletions

9
network.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
set -e
sudo ip link add br0 type bridge
sudo ip addr add 10.0.0.1/24 dev br0
sudo ip tuntap add tap0 mode tap
sudo ip link set tap0 master br0
sudo ip link set br0 up
sudo ip link set tap0 up