We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae10e12 commit 31675bdCopy full SHA for 31675bd
1 file changed
scapy/contrib/etherip.py
@@ -0,0 +1,14 @@
1
+
2
+# http://trac.secdev.org/scapy/ticket/297
3
4
+# scapy.contrib.description = EtherIP
5
+# scapy.contrib.status = loads
6
7
+class EtherIP(Packet):
8
+ name = "EtherIP / RFC 3378"
9
+ fields_desc = [ BitField("version", 3, 4),
10
+ BitField("reserved", 0, 12)]
11
12
+bind_layers( IP, EtherIP, frag=0, proto=0x61)
13
+bind_layers( EtherIP, Ether)
14
0 commit comments