dbaspot
Tags Register FAQ Calendar Search Today's Posts Mark Forums Read

F40 built-in ethernet port speed? - aix

This is a discussion on F40 built-in ethernet port speed? - aix ; How fast is the F40 built-in ethernet port (the twisted pair one, not the AUI, if it makes a difference)? I told it to download aix51ml9.tar.gz (~600MB) last night and it is still at it (I am using wget here): ...


Home > Database Forum > Operating Systems > aix > F40 built-in ethernet port speed?

Reply

 

LinkBack Thread Tools Display Modes
  #1  
Old 05-07-2007, 07:57 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default F40 built-in ethernet port speed?

How fast is the F40 built-in ethernet port (the twisted pair one, not
the AUI, if it makes a difference)? I told it to download
aix51ml9.tar.gz (~600MB) last night and it is still at it (I am using
wget here):

==> SYST ... done. ==> PWD ... done.
==> TYPE I ... done. ==> CWD /software/server/aix51 ... done.
==> PORT ... done. ==> RETR aix51ml9.tar.gz ... done.
Length: 676,284,690 (unauthoritative)

16% [====> ] 109,028,352 3.22K/s ETA 47:47:38

Is it me or that is way too slow?

--
Mauricio raub-kudria-com
(if you need to email me, use this address =)
Reply With Quote
  #2  
Old 05-07-2007, 08:25 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

Mauricio Tavares wrote:
> How fast is the F40 built-in ethernet port (the twisted pair one,
> not the AUI, if it makes a difference)? I told it to download
> aix51ml9.tar.gz (~600MB) last night and it is still at it (I am using
> wget here):
>
> ==> SYST ... done. ==> PWD ... done.
> ==> TYPE I ... done. ==> CWD /software/server/aix51 ... done.
> ==> PORT ... done. ==> RETR aix51ml9.tar.gz ... done.
> Length: 676,284,690 (unauthoritative)
>
> 16% [====> ] 109,028,352 3.22K/s ETA 47:47:38
>
> Is it me or that is way too slow?
>

According to my switch it is running at 100Base but half duplex?! Let's
see if I find a way to persuade it of the joys of going full duplex; can
I do that during flight?

bob>show int fa0/21
FastEthernet0/21 is up, line protocol is up
Hardware is Fast Ethernet, address is 0001.964d.6455 (bia 0001.964d.6455)
MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec,
reliability 239/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive not set
Auto-duplex (Half), Auto Speed (10), 100BaseTX/FX
ARP type: ARPA, ARP Timeout 04:00:00
Last input never, output 00:00:00, output hang never
Last clearing of "show interface" counters never
Queueing strategy: fifo
Output queue 0/40, 0 drops; input queue 0/75, 0 drops
5 minute input rate 5000 bits/sec, 7 packets/sec
5 minute output rate 25000 bits/sec, 7 packets/sec
14872462 packets input, 3993893193 bytes
Received 2032 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 1 CRC, 0 frame, 0 overrun, 0 ignored
0 watchdog, 112 multicast
0 input packets with dribble condition detected
8443653 packets output, 3390476725 bytes, 0 underruns
647573 output errors, 26474 collisions, 1 interface resets
0 babbles, 647573 late collision, 26594 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
bob>


--
Mauricio raub-kudria-com
(if you need to email me, use this address =)
Reply With Quote
  #3  
Old 05-10-2007, 04:24 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 7, 12:57 pm, Mauricio Tavares wrote:
> 16% [====> ] 109,028,352 3.22K/s ETA 47:47:38
>
> Is it me or that is way too slow?


Force that thing to Full Duplex.

# chdev -l ent0 -a media_speed=10_Full_Duplex

Autonegotiation always manages to have both parties disagree about the
duplex setting for some reason.

Hope this helps!

Cheers,
Menno

Reply With Quote
  #4  
Old 05-10-2007, 04:29 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 10, 9:23 am, Menno Willemse wrote:
> Force that thing to Full Duplex.
>
> # chdev -l ent0 -a media_speed=10_Full_Duplex
>
> Autonegotiation always manages to have both parties disagree about the
> duplex setting for some reason.
>


Ah. In full flight. The old "reconfigure-the-interface-I'm-logged-in-
on-and-hope-for-the-best".

batch
rmdev -l en0
chdev -l ent0 -a media_speed=10_Full_Duplex
mkdev -l en0
^D

Wait for a few breathless seconds and hope you didn't make any
typos Of course, if you can do this on the console, you don't need
the batch command. And you may have to check your routes afterwards,
but this is left as an exercise to the reader.

Reply With Quote
  #5  
Old 05-10-2007, 04:29 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 10, 9:23 am, Menno Willemse wrote:
> Force that thing to Full Duplex.
>
> # chdev -l ent0 -a media_speed=10_Full_Duplex
>
> Autonegotiation always manages to have both parties disagree about the
> duplex setting for some reason.
>


Ah. In full flight. The old "reconfigure-the-interface-I'm-logged-in-
on-and-hope-for-the-best".

batch
rmdev -l en0
chdev -l ent0 -a media_speed=10_Full_Duplex
mkdev -l en0
^D

Wait for a few breathless seconds and hope you didn't make any
typos Of course, if you can do this on the console, you don't need
the batch command. And you may have to check your routes afterwards,
but this is left as an exercise to the reader.

Reply With Quote
  #6  
Old 05-15-2007, 11:02 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 10, 4:29 am, Menno Willemse wrote:
> On May 10, 9:23 am, Menno Willemse wrote:
>
> > Force that thing to Full Duplex.

>
> > # chdev -l ent0 -a media_speed=10_Full_Duplex

>
> > Autonegotiation always manages to have both parties disagree about the
> > duplex setting for some reason.

>
> Ah. In full flight. The old "reconfigure-the-interface-I'm-logged-in-
> on-and-hope-for-the-best".
>
> batch
> rmdev -l en0
> chdev -l ent0 -a media_speed=10_Full_Duplex
> mkdev -l en0
> ^D
>
> Wait for a few breathless seconds and hope you didn't make any
> typos Of course, if you can do this on the console, you don't need
> the batch command. And you may have to check your routes afterwards,
> but this is left as an exercise to the reader.


I ran the above batch thingie and this is what I got:

$ lsattr -El ent0
busio 0x800000 Bus I/O address False
busintr 3 Bus interrupt level False
intr_priority 3 Interrupt priority False
tx_que_size 64 TRANSMIT queue size True
rx_que_size 32 RECEIVE queue size True
full_duplex yes Full duplex True
use_alt_addr no Enable ALTERNATE ETHERNET address True
alt_addr 0x000000000000 ALTERNATE ETHERNET address True
$

So, the machine thinks the card is doing full duplex. Problem is the
switch still thinks we are doing half. So, I turned the port of and
then back in in the switch. It did not help. What next? Force the
port to go full in the switch?

Reply With Quote
  #7  
Old 05-15-2007, 11:02 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 10, 4:29 am, Menno Willemse wrote:
> On May 10, 9:23 am, Menno Willemse wrote:
>
> > Force that thing to Full Duplex.

>
> > # chdev -l ent0 -a media_speed=10_Full_Duplex

>
> > Autonegotiation always manages to have both parties disagree about the
> > duplex setting for some reason.

>
> Ah. In full flight. The old "reconfigure-the-interface-I'm-logged-in-
> on-and-hope-for-the-best".
>
> batch
> rmdev -l en0
> chdev -l ent0 -a media_speed=10_Full_Duplex
> mkdev -l en0
> ^D
>
> Wait for a few breathless seconds and hope you didn't make any
> typos Of course, if you can do this on the console, you don't need
> the batch command. And you may have to check your routes afterwards,
> but this is left as an exercise to the reader.


I ran the above batch thingie and this is what I got:

$ lsattr -El ent0
busio 0x800000 Bus I/O address False
busintr 3 Bus interrupt level False
intr_priority 3 Interrupt priority False
tx_que_size 64 TRANSMIT queue size True
rx_que_size 32 RECEIVE queue size True
full_duplex yes Full duplex True
use_alt_addr no Enable ALTERNATE ETHERNET address True
alt_addr 0x000000000000 ALTERNATE ETHERNET address True
$

So, the machine thinks the card is doing full duplex. Problem is the
switch still thinks we are doing half. So, I turned the port of and
then back in in the switch. It did not help. What next? Force the
port to go full in the switch?

Reply With Quote
  #8  
Old 05-15-2007, 11:30 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 15, 5:02 pm, Mauricio wrote:
....
>
> So, the machine thinks the card is doing full duplex. Problem is the
> switch still thinks we are doing half. So, I turned the port of and
> then back in in the switch. It did not help. What next? Force the
> port to go full in the switch?


$ entsat ent0
will show properties of the adapter , current speed and any errors

hth
Hajo

Reply With Quote
  #9  
Old 05-15-2007, 11:30 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 15, 5:02 pm, Mauricio wrote:
....
>
> So, the machine thinks the card is doing full duplex. Problem is the
> switch still thinks we are doing half. So, I turned the port of and
> then back in in the switch. It did not help. What next? Force the
> port to go full in the switch?


$ entsat ent0
will show properties of the adapter , current speed and any errors

hth
Hajo

Reply With Quote
  #10  
Old 05-16-2007, 07:11 AM
Database Bot
 
Join Date: Sep 2009
Posts: 1,236,254
Database Administrator is on a distinguished road
Default Re: F40 built-in ethernet port speed?

On May 15, 11:29 am, Hajo Ehlers wrote:
>
> $ entsat ent0
> will show properties of the adapter , current speed and any errors
>
> hth
> Hajo


Unfortunately it seems entsat is not available in 5.1. =(

Reply With Quote
Reply

Thread Tools
Display Modes



All times are GMT -4. The time now is 11:44 AM.