| Server IP : 118.27.122.120 / Your IP : 216.73.216.239 Web Server : Apache System : Linux web0216.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : r4834334 ( 11094) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/opt/rh/devtoolset-8/root/usr/share/systemtap/examples/network/ |
Upload File : |
#!/opt/rh/devtoolset-8/root/usr/bin/stap
############################################################
# netdev.stp
# Author: Breno Leitao <leitao@linux.vnet.ibm.com>
# An example script to show how a netdev works and its
# functions
############################################################
probe netdev.get_stats ? {
printf("%s was asked for statistics structure\n", dev_name)
}
probe netdev.register{
printf("Registering netdev_name %s\n", dev_name)
}
probe netdev.unregister{
printf("Unregistering netdev %s\n", dev_name)
}
probe netdev.ioctl{
printf("Netdev ioctl raised with param: %d and arg: %s\n", cmd, arg)
}
probe netdev.set_promiscuity {
if (enable)
printf("Device %s entering in promiscuous mode\n", dev_name)
else
printf("Device %s leaving promiscuous mode\n", dev_name)
}
probe netdev.change_rx_flag ? {
printf("Device %s is changing its RX flags to %d\n", dev_name, flags)
}
probe netdev.change_mtu {
printf("Changing MTU on device %s from %d to %d\n", dev_name,
old_mtu, new_mtu)
}
probe netdev.change_mac {
printf("Changing MAC address on device %s from %s to %s\n",
dev_name, old_mac, new_mac)
}
probe netdev.transmit {
printf("Device %s is sending (queued) a packet with protocol %d\n", dev_name, protocol)
}
probe netdev.hard_transmit {
printf("Device %s is sending (hard) a packet with protocol %d\n", dev_name, protocol)
}
probe netdev.rx {
printf("Device %s received a packet with protocol %d\n", dev_name, protocol)
}