GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Packet::CDP(3) User Contributed Perl Documentation Net::Packet::CDP(3)

Net::Packet::CDP - Cisco Discovery Protocol layer 4 object

   use Net::Packet::Consts qw(:cdp);
   require Net::Packet::CDP;

   # Build a layer
   my $layer = Net::Packet::CDP->new(
      version  => 2,
      ttl      => 180,
      checksum => 0,
   );
   $layer->pack;

   print 'RAW: '.unpack('H*', $layer->raw)."\n";

   # Read a raw layer
   my $layer = Net::Packet::CDP->new(raw => $raw);

   print $layer->print."\n";
   print 'PAYLOAD: '.unpack('H*', $layer->payload)."\n"
      if $layer->payload;

This modules implements the encoding and decoding of the Cisco Discovery Protocol layer.

See also Net::Packet::Layer and Net::Packet::Layer4 for other attributes and methods.

version - 8 bits
ttl - 8 bits
checksum - 16 bits
typeDeviceId
typeAddresses
typePortId
typeCapabilities
typeSoftwareVersion
All these type attributes keep a pointer to the respective object. That is, for typeDeviceId, you have a pointer to a Net::Packet::CDP::TypeDeviceId object, if applicable.

new
Object constructor. You can pass attributes that will overwrite default ones. Default values:

version: 2

ttl: 180

checksum: 0

pack
Packs all attributes into a raw format, in order to inject to network. Returns 1 on success, undef otherwise.
unpack
Unpacks raw data from network and stores attributes into the object. Returns 1 on success, undef otherwise.

Load them: use Net::Packet::Consts qw(:cdp);
NP_CDP_HDR_LEN
CDP header length.
NP_CDP_TYPE_DEVICE_ID
NP_CDP_TYPE_ADDRESSES
NP_CDP_TYPE_PORT_ID
NP_CDP_TYPE_CAPABILITIES
NP_CDP_TYPE_SOFTWARE_VERSION
NP_CDP_TYPE_PLATFORM
NP_CDP_TYPE_VTP_MANAGEMENT_DOMAIN
NP_CDP_TYPE_DUPLEX
NP_CDP_TYPE_VOIP_VLAN_REPLY
NP_CDP_TYPE_TRUST_BITMAP
NP_CDP_TYPE_UNTRUSTED_PORT_COS
NP_CDP_TYPE_SYSTEM_NAME
NP_CDP_TYPE_SYSTEM_OBJECT_ID
NP_CDP_TYPE_LOCATION
Various supported CDP types.

Patrice <GomoR> Auffret

Copyright (c) 2004-2009, Patrice <GomoR> Auffret

You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.

NetPacket, Net::RawIP, Net::RawSock
2009-11-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.