OXIESEC PANEL
- Current Dir:
/
/
etc
/
network
/
if-pre-up.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/11/2020 06:46:23 AM
rwxr-xr-x
📄
ethtool
344 bytes
02/23/2018 11:56:05 AM
rwxr-xr-x
Editing: ethtool
Close
#!/bin/sh ETHTOOL=/sbin/ethtool test -x $ETHTOOL || exit 0 [ "$IFACE" != "lo" ] || exit 0 # Gather together the mixed bag of settings applied with -s/--change SETTINGS="\ ${IF_ETHERNET_PORT:+ port $IF_ETHERNET_PORT}\ ${IF_DRIVER_MESSAGE_LEVEL:+ msglvl $IF_DRIVER_MESSAGE_LEVEL}\ " [ -z "$SETTINGS" ] || $ETHTOOL --change "$IFACE" $SETTINGS