Sponsored Content
Full Discussion: DVD for AIX
Operating Systems AIX DVD for AIX Post 302077309 by thalex on Wednesday 21st of June 2006 05:40:45 AM
Old 06-21-2006
You are right, that is possible with other ways too, like samba. I prefer just to copy the data. With 1 Gbit ethernet it is not that hard.
 

8 More Discussions You Might Find Interesting

1. AIX

Using UDF DVD on AIX 5.3

I was trying to copy a 2.5GB mksysb onto a 5.3 lpar to add as a NIM resource. The DVD mounted fine but I could not see any files within the mount point. I thought the media was bad so I tried again with a DVD-R disk but the same thing happened. I decided to split the file up into 1024MB chunks... (0 Replies)
Discussion started by: backslash
0 Replies

2. AIX

How to burn a bootable DVD on aix 5.3?

I have a mksysb backup image need burn to a DVD, then it can be used to restore OS in other machine. How to do this? (5 Replies)
Discussion started by: rainbow_bean
5 Replies

3. AIX

AIX 5.3 on p275 - DVD-ROM drive not recognized

I was having problems with the DVD-ROM drive not being recognized. I thought it was a configuration issue, but it appears to be a hardware problem. Now the system hangs at boot. This last time I tried it, it said: At which point, it hangs. (1 Reply)
Discussion started by: smithfarm
1 Replies

4. AIX

need help - How to mount DVD rom in AIX in Command line

Dear Friends could u pls help me on this . how to mount DVD rom in command line in aix? THanks DD (4 Replies)
Discussion started by: ded325
4 Replies

5. AIX

aix 7.1 standard DVD

does it come with VIO and/or HACMP/PowerHA ?? :mad: (1 Reply)
Discussion started by: ppchu99
1 Replies

6. AIX

Using mkdvd to create bootable mksysb on dvd reports success but nothing on dvd?

Hello, Running AIX 7.1 7100-00-03-1115, trying to make a mksysb image to a dvd drive using mkdvd. My final command looks like this.. mkdvd -e -V rootvg -R -C /usr1/AIXADMIN/mkcd/cd_fs -I /usr1/AIXADMIN/mkcd/cd_images -M /usr1/AIXADMIN/mkcd/mksysbimage -d /dev/cd0 -Y When i run this... (3 Replies)
Discussion started by: c3rb3rus
3 Replies

7. AIX

Lost original AIX DVD

At company I joined it seems I cannot trace install DVD (5765-G99 - AIX Enterprise 7.1) but according invoice I found we are entitled for it. It seems that support for account expired and I cannot download any software/updates except HMC ones :( Anybody knows which exact version (TL,... (1 Reply)
Discussion started by: spricer
1 Replies

8. AIX

AIX physical DVD/CD drive

Hello, I have some doubts about the dvd/cd physical on power machine and AIX. I see on my AIX lpar and see there is 1 DVD drive and its physical location bash-4.4# lsdev | grep cd0 cd0 Available 03-00-00 SATA DVD-RAM Drive bash-4.4# lscfg -vpl cd0 cd0 ... (12 Replies)
Discussion started by: Phat
12 Replies
NetPacket::Ethernet(3pm)				User Contributed Perl Documentation				  NetPacket::Ethernet(3pm)

NAME
NetPacket::Ethernet - Assemble and disassemble ethernet packets. VERSION
version 1.3.0 SYNOPSIS
use NetPacket::Ethernet; $eth_obj = NetPacket::Ethernet->decode($raw_pkt); $eth_pkt = NetPacket::Ethernet->encode(params...); # Not implemented $eth_data = NetPacket::Ethernet::strip($raw_pkt); DESCRIPTION
"NetPacket::Ethernet" provides a set of routines for assembling and disassembling packets using the Ethernet protocol. Methods "NetPacket::Ethernet->decode([RAW PACKET])" Decode the raw packet data given and return an object containing instance data. This method will quite happily decode garbage input. It is the responsibility of the programmer to ensure valid packet data is passed to this method. "NetPacket::Ethernet->encode(param => value)" Return an ethernet packet encoded with the instance data specified. Not implemented. Functions "NetPacket::Ethernet::strip([RAW PACKET])" Return the encapsulated data (or payload) contained in the ethernet packet. This data is suitable to be used as input for other "NetPacket::*" modules. This function is equivalent to creating an object using the "decode()" constructor and returning the "data" field of that object. Instance data The instance data for the "NetPacket::Ethernet" object consists of the following fields. src_mac The source MAC address for the ethernet packet as a hex string. dest_mac The destination MAC address for the ethernet packet as a hex string. type The protocol type for the ethernet packet. data The payload for the ethernet packet. Exports default none exportable ETH_TYPE_IP ETH_TYPE_ARP ETH_TYPE_APPLETALK ETH_TYPE_SNMP ETH_TYPE_IPv6 ETH_TYPE_PPP tags The following tags group together related exportable items. ":types" ETH_TYPE_IP ETH_TYPE_ARP ETH_TYPE_APPLETALK ETH_TYPE_SNMP ETH_TYPE_IPv6 ETH_TYPE_PPP ":strip" Import the strip function "eth_strip" which is an alias for "NetPacket::Ethernet::strip" ":ALL" All the above exportable items. EXAMPLE
The following script dumps ethernet frames by mac address and protocol to standard output. #!/usr/bin/perl -w use strict; use Net::PcapUtils; use NetPacket::Ethernet; sub process_pkt { my($arg, $hdr, $pkt) = @_; my $eth_obj = NetPacket::Ethernet->decode($pkt); print("$eth_obj->{src_mac}:$eth_obj->{dest_mac} $eth_obj->{type} "); } Net::PcapUtils::loop(&process_pkt); TODO
Implement "encode()" function COPYRIGHT
Copyright (c) 2001 Tim Potter and Stephanie Wehner. Copyright (c) 1995,1996,1997,1998,1999 ANU and CSIRO on behalf of the participants in the CRC for Advanced Computational Systems ('ACSys'). This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Tim Potter <tpot@samba.org> perl v5.14.2 2011-11-20 NetPacket::Ethernet(3pm)
All times are GMT -4. The time now is 10:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy