Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

network device help

Status
Not open for further replies.

dwcasey

MIS
Oct 31, 2002
179
US
Can someone point me to an AIX manual or list here the relationship between device ent0, en0, and eth0? I know 0 can be 1, 2, 3, etc.

I'm working in an IBM BladeCenter with AIX blades.
 
Not sure what exactly you're looking for, but I'll try to help.
ent0 is kind of the physical device, and en0 and et0 are sort of "logical" representations of ent0, each one for a different protocol.

et0 uses the standard 802.3 IEEE protocol, and en0 uses the ethernet protocol, that is the one that's actually used in LANs.
 
More info

Code:
The "en" and "et" prefixes for AIX Ethernet network interfaces
indicate the type of "framing" that surrounds higher-level protocol
data on the Ethernet medium ("wire").  The Ethernet frame is the
envelope that surrounds IP packets and equivalent messages in other
protocols.

There are two kinds of Ethernet framing in common use today.  The
"official" standard is IEEE 802.3 framing, but TCP/IP traffic on
Ethernet is usually carried in DIX (Digital / Intel / Xerox) type
II (usually written "DIX II" or just "DIX") frames.  Other
transport-independent protocols, may use 802.3.  On AIX, SNA is
probably the most common 802.3-framed protocol.

The two frame types can coexist on the wire.

Most TCP/IP stacks only support DIX framing.  AIX is unusual in
supporting both DIX and 802.3 framing for TCP/IP, but there's little
point in using 802.3 for TCP/IP.  The en0 interface uses DIX; the
et0 interface uses 802.3 (and so on for en1/et1, etc., if you have
multiple NICs).

You can configure TCP/IP for both en0 (DIX) and et0 (802.3), in
which case you're creating a multihomed host with only one physical
network connection.  Unless you know you need TCP/IP over 802.3,
don't bother.

You don't need to configure TCP/IP on 802.3 to use other protocols
(eg. SNA) on 802.3.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top