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
This commit is contained in:
nikkytub
2020-03-13 10:35:35 +05:30
committed by GitHub
parent 05174e8a95
commit 971ceb7d90
12 changed files with 896 additions and 0 deletions

21
exercises/qos/receive.py Executable file
View File

@@ -0,0 +1,21 @@
#!/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()