Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::write::layer2(3pm) [debian man page]

Net::Write::Layer2(3pm) 				User Contributed Perl Documentation				   Net::Write::Layer2(3pm)

NAME
Net::Write::Layer2 - object for a link layer (layer 2) descriptor SYNOPSIS
use Net::Write::Layer2; my $desc = Net::Write::Layer2->new( dev => 'eth0', ); $desc->open; $desc->send('G'x666); $desc->close; DESCRIPTION
This is the class for creating a layer 2 descriptor. ATTRIBUTES
dev The string specifying network interface to use. Under Unix-like systems, this is in this format: w+d+ (example: eth0). Under Windows systems, this is more complex; example: DeviceNPF_{0749A9BC-C665-4C55-A4A7-34AC2FBAB70F} METHODS
new Object constructor. You MUST pass a valid dev attribute. There is no default value. open Open the interface. send (scalar) Send raw data to the network. close Close the descriptor. CAVEATS
Writing junk to loopback interface on BSD systems will not work. SEE ALSO
Net::Write::Layer AUTHOR
Patrice <GomoR> Auffret COPYRIGHT AND LICENSE
Copyright (c) 2006-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. perl v5.10.1 2009-06-10 Net::Write::Layer2(3pm)

Check Out this Related Man Page

Net::Write::Layer(3pm)					User Contributed Perl Documentation				    Net::Write::Layer(3pm)

NAME
Net::Write::Layer - base class and constants SYNOPSIS
use Net::Write::Layer qw(:constants); DESCRIPTION
This is the base class for Net::Write::Layer2, Net::Write::Layer3 and Net::Write::Layer4 modules. It just provides those layers with inheritable attributes, methods and constants. ATTRIBUTES
dev Network interface to use. dst Target IPv4 or IPv6 address. protocol Transport layer protocol to use (TCP, UDP, ...). family Adresse family to use (NW_AF_INET, NW_AF_INET6). METHODS
new Object constructor. open Open the descriptor, when you are ready to send. send (scalar) Send the raw data passed as a parameter. Returns undef on failure, true otherwise. close Close the descriptor. CONSTANTS
NW_AF_INET NW_AF_INET6 NW_AF_UNSPEC Address family constants, for use with family attribute. NW_IPPROTO_IP NW_IPPROTO_IPv6 NW_IPPROTO_ICMPv4 NW_IPPROTO_TCP NW_IPPROTO_UDP NW_IPPROTO_ICMPv6 Transport layer protocol constants, for use with protocol attribute. NW_IP_HDRINCL NW_IPPROTO_RAW Mostly used internally. SEE ALSO
Net::Write::Layer2, Net::Write::Layer3, Net::Write::Layer4 AUTHOR
Patrice <GomoR> Auffret COPYRIGHT AND LICENSE
Copyright (c) 2006-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. perl v5.10.1 2009-06-10 Net::Write::Layer(3pm)
Man Page

We Also Found This Discussion For You

1. UNIX for Dummies Questions & Answers

help me

Write a program that demonstrates use of signal handler using a) Wait b) Waitpid and explain the difference between the two based on your experience of computing Write code for the following. a) Write a program that will demonize a service (any service) and explain... (1 Reply)
Discussion started by: madhura
1 Replies