wpj428/files/etc/hotplug.d/iface/99-ifup-wwan
Quentin 7ef652b184 Correction XDP file path, wwan_loop service and add hotplug iface wwan script
XDP file path was in the var folder which is a virtual link to tmp folder.

add hotplug script to put the script xdp on the interface wwan when the command ifup -a wwan0 is called.

wwan_loop service crash on the launch, because it launched before the interface wwan set up.
2022-04-16 17:25:28 +01:00

8 lines
201 B
Bash

#!/bin/sh
[ "$ACTION" = "ifup" -a "$DEVICE" = "wwan0" ] && {
logger "iface wwan0 up detected, loading XDP..."
ip link set dev wwan0 xdp obj /usr/local/share/xdp/xdp_udp.o sec xdp_udp
}
exit 0