sunOS 5.7 problem

2003-03-17 Thread Conko, Steven
Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.


Re: sunOS 5.7 problem

2003-03-17 Thread bbullock
It's a simple set of 'ndd' settings to get it hard-coded to 100 full. Here is 
an example of both a hme and a qfe card

#Settings for hme0
ndd -set /dev/hme instance 0
ndd -set /dev/hme adv_100fdx_cap 1
ndd -set /dev/hme adv_10fdx_cap 0
ndd -set /dev/hme adv_10hdx_cap 0
ndd -set /dev/hme adv_100hdx_cap 0
ndd -set /dev/hme adv_autoneg_cap 0

#Settings for qfe1
ndd -set /dev/qfe instance 1
ndd -set /dev/qfe adv_100fdx_cap 1
ndd -set /dev/qfe adv_10fdx_cap 0
ndd -set /dev/qfe adv_10hdx_cap 0
ndd -set /dev/qfe adv_100hdx_cap 0
ndd -set /dev/qfe adv_autoneg_cap 0

These will be lost upon reboot, so you will want to put it in an rc script to 
be run at boot.

Ben
Unix admin
Micron Technology Inc.
Boise, Id

-Original Message-
From: Conko, Steven [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 1:46 PM
To: [EMAIL PROTECTED]
Subject: sunOS 5.7 problem


Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.


Re: sunOS 5.7 problem

2003-03-17 Thread PINNI, BALANAND (SBCSI)
Use

/etc/system

*
* Network Interface 100Mbps Full Duplex
*
set eri:adv_autoneg_cap=0
set eri:adv_100T4_cap=0
set eri:adv_100fdx_cap=1
set eri:adv_100hdx_cap=0
set eri:adv_10fdx_cap=0
set eri:adv_10hdx_cap=0
*

-Original Message-
From: Conko, Steven [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 2:46 PM
To: [EMAIL PROTECTED]
Subject: sunOS 5.7 problem

Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.


Re: sunOS 5.7 problem

2003-03-17 Thread Berning, Tom
If you put these in the /etc/system file without the ndd - parameters it
will set them on all qfe or hme even if you have a quad ethernet card in the
box.

example

#Settings for qfe1
set /dev/qfe instance 1
set /dev/qfe adv_100fdx_cap 1
set /dev/qfe adv_10fdx_cap 0
set /dev/qfe adv_10hdx_cap 0
set /dev/qfe adv_100hdx_cap 0
set /dev/qfe adv_autoneg_cap 0

Thomas R. Berning
8485 Broadwell Road
Cincinnati, OH 45244
Phone: 513-388-2857
Fax: 513-388-

-Original Message-
From: bbullock [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 3:53 PM
To: [EMAIL PROTECTED]
Subject: Re: sunOS 5.7 problem


It's a simple set of 'ndd' settings to get it hard-coded to 100
full. Here is an example of both a hme and a qfe card

#Settings for hme0
ndd -set /dev/hme instance 0
ndd -set /dev/hme adv_100fdx_cap 1
ndd -set /dev/hme adv_10fdx_cap 0
ndd -set /dev/hme adv_10hdx_cap 0
ndd -set /dev/hme adv_100hdx_cap 0
ndd -set /dev/hme adv_autoneg_cap 0

#Settings for qfe1
ndd -set /dev/qfe instance 1
ndd -set /dev/qfe adv_100fdx_cap 1
ndd -set /dev/qfe adv_10fdx_cap 0
ndd -set /dev/qfe adv_10hdx_cap 0
ndd -set /dev/qfe adv_100hdx_cap 0
ndd -set /dev/qfe adv_autoneg_cap 0

These will be lost upon reboot, so you will want to put it in an rc
script to be run at boot.

Ben
Unix admin
Micron Technology Inc.
Boise, Id

-Original Message-
From: Conko, Steven [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 1:46 PM
To: [EMAIL PROTECTED]
Subject: sunOS 5.7 problem


Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.


Re: sunOS 5.7 problem

2003-03-17 Thread PINNI, BALANAND (SBCSI)
Check for the following

Netstat -p tcp
Netstat -p ip
Netstat -D
Netstat -m

This will give you some idea on how ur network is functioning.Check ur
netmask and default gateway how is they are doing on n/w.

If ur server is on different n/w
Then try traceroute xx.xx.xx.xx IP of TSM Server
May be ttl is not ok and many hops may be there to reach the server.

Thanks
Balanand Pinni


-Original Message-
From: Conko, Steven [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 2:46 PM
To: [EMAIL PROTECTED]
Subject: sunOS 5.7 problem

Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.


Re: sunOS 5.7 problem

2003-03-17 Thread bbullock
True, but on some interfaces you might want to leave auto negotiate on or have 
a different setting (depending on the brand of the switch or the settings that seem to 
work best on that subnet. i.e. one interface is on a monitoring network were we use 
older dime a dozen 10Mb switches because speed and throughput are not needed, just 
connectivity.)

Both methods will work depending on what he wants to achieve.

Ben

-Original Message-
From: Berning, Tom [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 1:58 PM
To: [EMAIL PROTECTED]
Subject: Re: sunOS 5.7 problem


If you put these in the /etc/system file without the ndd - parameters it
will set them on all qfe or hme even if you have a quad ethernet card in the
box.

example

#Settings for qfe1
set /dev/qfe instance 1
set /dev/qfe adv_100fdx_cap 1
set /dev/qfe adv_10fdx_cap 0
set /dev/qfe adv_10hdx_cap 0
set /dev/qfe adv_100hdx_cap 0
set /dev/qfe adv_autoneg_cap 0

Thomas R. Berning
8485 Broadwell Road
Cincinnati, OH 45244
Phone: 513-388-2857
Fax: 513-388-

-Original Message-
From: bbullock [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 3:53 PM
To: [EMAIL PROTECTED]
Subject: Re: sunOS 5.7 problem


It's a simple set of 'ndd' settings to get it hard-coded to 100
full. Here is an example of both a hme and a qfe card

#Settings for hme0
ndd -set /dev/hme instance 0
ndd -set /dev/hme adv_100fdx_cap 1
ndd -set /dev/hme adv_10fdx_cap 0
ndd -set /dev/hme adv_10hdx_cap 0
ndd -set /dev/hme adv_100hdx_cap 0
ndd -set /dev/hme adv_autoneg_cap 0

#Settings for qfe1
ndd -set /dev/qfe instance 1
ndd -set /dev/qfe adv_100fdx_cap 1
ndd -set /dev/qfe adv_10fdx_cap 0
ndd -set /dev/qfe adv_10hdx_cap 0
ndd -set /dev/qfe adv_100hdx_cap 0
ndd -set /dev/qfe adv_autoneg_cap 0

These will be lost upon reboot, so you will want to put it in an rc
script to be run at boot.

Ben
Unix admin
Micron Technology Inc.
Boise, Id

-Original Message-
From: Conko, Steven [mailto:[EMAIL PROTECTED]
Sent: Monday, March 17, 2003 1:46 PM
To: [EMAIL PROTECTED]
Subject: sunOS 5.7 problem


Extremely slow backups from a sunOS 5.7 client with lots of collisions.
does anyone know how to hardcode the interface to 100 Full Duplex? Sparc 20
model.

Steven A. Conko
Senior Unix Systems Administrator
ADT Security Services, Inc.