Sponsored Content
Full Discussion: Reconfiguring Networkcard
Operating Systems AIX Reconfiguring Networkcard Post 302221981 by bakunin on Tuesday 5th of August 2008 05:09:13 PM
Old 08-05-2008
"ent-n", "et-n" and "en-n" are different aspects of the interface: "ent" is the physical device as you have already thought. It is the device entry for an Ethernet NIC card, like "hdisk-x" is a disk device, "scsi" is a SCSI-Adapter, etc.

"et" and "en" are logical devices which come from different driver layers. The former one is the (logical) ethernet-interface (to put it in network terminology: its the layer-2-device). Note that the et-device has already a MAC address (because this is a layer-2-addressing device). You can (could - better not change these values unless you know exactly what you are doing) configure datagram packet sizes and the like.

The en-device is a full-blown IP interface with an IP-address and everything else necessary for IP networking.

This is mostly for your information because usually you will not have to manage the lower layers of the driver stack. AIX does - usually - a fairly good job in administering these. For everything else see dukessds excellent advice.

I hope this helps.

bakunin
 

2 More Discussions You Might Find Interesting

1. Solaris

Reconfiguring the network

Hi, I am a beginner to Solaris. I installed it on a AMD Athlon 2000+, dual booting with XP. When I installed it, I didn't setup the network section and went on to install it without the n/w config. Now I have ethernet access at my school, and wanted to be able to connect to the internet through... (1 Reply)
Discussion started by: init-5
1 Replies

2. Homework & Coursework Questions

Reconfiguring the kernel

1. The problem statement, all variables and given/known data: Download the newest kernel version. Once your kernel has been re-configured, your lilo or grub should have a choice of 2 different kernels. You should have the choice of picking either one of them. The first choice should be the... (7 Replies)
Discussion started by: dude_me5
7 Replies
scsi_address(9S)					    Data Structures for Drivers 					  scsi_address(9S)

NAME
scsi_address - SCSI address structure SYNOPSIS
#include <sys/scsi/scsi.h> INTERFACE LEVEL
Solaris architecture specific (Solaris DDI) DESCRIPTION
A scsi_address structure defines the addressing components for a SCSI target device. The address of the target device is separated into two components: target number and logical unit number. The two addressing components are used to uniquely identify any type of SCSI device; however, most devices can be addressed with the target component of the address. In the case where only the target component is used to address the device, the logical unit should be set to 0. If the SCSI target device supports logical units, then the HBA must interpret the logical units field of the data structure. The pkt_address member of a scsi_pkt(9S) is initialized by scsi_init_pkt(9F). STRUCTURE MEMBERS
scsi_hba_tran_t *a_hba_tran; /* Transport vectors for the SCSI bus */ ushort_t a_target; /* SCSI target id */ uchar_t a_lun; /* SCSI logical unit */ a_hba_tran is a pointer to the controlling HBA's transport vector structure. The SCSA interface uses this field to pass any transport requests from the SCSI target device drivers to the HBA driver. a_target is the target component of the SCSI address. a_lun is the logical unit component of the SCSI address. The logical unit is used to further distinguish a SCSI target device that supports multiple logical units from one that does not. The makecom(9F) family of functions use the a_lun field to set the logical unit field in the SCSI CDB, for compatibility with SCSI-1. SEE ALSO
makecom(9F), scsi_init_pkt(9F), scsi_hba_tran(9S), scsi_pkt(9S) Writing Device Drivers SunOS 5.10 30 Aug 1995 scsi_address(9S)
All times are GMT -4. The time now is 10:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy