Skip to content

netmanager:改名、更改架构、增加macfilter和路由优化及文档 #46

netmanager:改名、更改架构、增加macfilter和路由优化及文档

netmanager:改名、更改架构、增加macfilter和路由优化及文档 #46

name: net_manager
on:
push:
branches:
- "*"
paths:
- 'eBPF_Supermarket/Network_Subsystem/net_manager/**'
- '.github/workflows/net_manager.yml'
pull_request:
branches:
- "*"
paths:
- 'eBPF_Supermarket/Network_Subsystem/net_manager/**'
- '.github/workflows/net_manager.yml'
permissions:
contents: write
jobs:
net_manager_build-and-run:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies and Init Env
run: |
sudo apt update
sudo apt install clang llvm libelf-dev libpcap-dev build-essential libc6-dev-i386 linux-headers-$(uname -r) linux-tools-common linux-tools-generic
sudo git submodule update --init --recursive
- name: Build and Run
run: |
cd eBPF_Supermarket/Network_Subsystem/net_manager/
sudo ./configure
sudo make
ifconfig
# run
cd testenv
sudo ./testenv.sh setup --name veth-basic02
cd ..
sudo timeout -s SIGINT 5 ./netmanager -d eth0 -S || if [[ $? != 124 && $? != 0 ]];then exit $?;fi
sudo ./netmanager -d eth0 -S