nikkytub 971ceb7d90
Added quality of service(QOS) via Differentiated services (#330)
* Added quality of service(QOS) via Differentiated services

* Altered to classify network traffic in Ingress

* Updated readme for QoS
2020-03-13 01:05:35 -04:00

22 lines
345 B
Python
Executable File

#!/usr/bin/env python
import sys
from scapy.all import sniff, get_if_list
def handle_pkt(pkt):
print "got a packet"
pkt.show2()
sys.stdout.flush()
def main():
iface = 'eth0'
print "sniffing on %s" % iface
sys.stdout.flush()
sniff(iface=iface, prn=lambda x: handle_pkt(x))
if __name__ == '__main__':
main()