Class: PacketGen::Plugin::IKE::VendorID

Inherits:
Payload
  • Object
show all
Defined in:
lib/packetgen/plugin/ike/vendor_id.rb

Overview

This class handles Vendor ID payloads, as defined in RFC 7296 ยง3.12.

A Vendor ID payload contains a generic payload Plugin (see Payload) and data field (type Types::String):

                     1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Next Payload  |C|  RESERVED   |         Payload Length        |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
~                            VendorID Data                         ~
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Create a Vendor ID payload

# Create a IKE packet with a Vendor ID payload
pkt = PacketGen.gen('IP').add('UDP').add('IKE')
pkt.add('IKE::VendorID', data: "abcdefgh")

Author:

  • Sylvain Daubert

Constant Summary collapse

PAYLOAD_TYPE =

Payload type number

43

Instance Attribute Summary

Attributes inherited from Payload

#content, #critical, #flags, #hreserved, #length, #next

Method Summary

Methods inherited from Payload

#calc_length, #initialize, protocol_name

Constructor Details

This class inherits a constructor from PacketGen::Plugin::IKE::Payload