Solaris / OpenSolaris This forum is for the discussion of Solaris and OpenSolaris.
General Sun, SunOS and Sparc related questions also go here. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
05-15-2006, 09:41 PM
|
#1
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Rep:
|
change to 1000MB full duplex for Solaris 8,9,10
Hi,
I would like to know how do i change the NIC card to 1000MB full duplex for Solaris 8,9,10 ? Thanks
|
|
|
|
05-15-2006, 09:56 PM
|
#2
|
|
Senior Member
Registered: Jan 2005
Distribution: Slackware, BackTrack, Windows XP
Posts: 1,020
Rep:
|
Quote:
|
Originally Posted by DarReNz
Hi,
I would like to know how do i change the NIC card to 1000MB full duplex for Solaris 8,9,10 ? Thanks
|
Hi,
do your NIC card have support for 1000 mbps (Its mega bits and not mega bytes, MB). Also the connecting cables (CAT 5 or whatever you are using) must support upto 1000mbps data rate.
regards
|
|
|
|
05-16-2006, 01:26 AM
|
#3
|
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris10, Solaris 11, Ubuntu, OL
Posts: 9,311
|
Quote:
|
Originally Posted by DarReNz
Hi,
I would like to know how do i change the NIC card to 1000MB full duplex for Solaris 8,9,10 ? Thanks
|
Assuming you are using supported hardware, this is done automatically by autonegotiation between the NIC and the device it is connected to.
|
|
|
|
05-16-2006, 02:26 AM
|
#4
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
Quote:
|
Originally Posted by jlliagre
Assuming you are using supported hardware, this is done automatically by autonegotiation between the NIC and the device it is connected to.
|
Hi if i were to change it manually to full duplex what commands do i use ?
|
|
|
|
05-16-2006, 05:28 AM
|
#5
|
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris10, Solaris 11, Ubuntu, OL
Posts: 9,311
|
That may depend on what your hardware is.
ndd could be one way, editing the driver configuration file may be another.
Last edited by jlliagre; 05-16-2006 at 05:29 AM.
|
|
|
|
05-19-2006, 02:41 PM
|
#6
|
|
Member
Registered: Jan 2005
Distribution: SuSE (x86), NetBSD (Sparc), Solaris (Sparc & 32-bit x86)
Posts: 278
Rep:
|
My 1gb network adapter only comes up as 100mb in Solaris. Appears to be driver related as it comes up in 1gb when appropriate drivers are installed in Windows. Had Linux on it for awhile, but only had 100mb switch at that time... 
|
|
|
|
05-22-2006, 04:14 AM
|
#7
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
hi all
is this command correct ?
ndd -set /dev/eri adv_1000fdx_cap 1
i keep getting "operation failed, Invalid argument"
|
|
|
|
05-24-2006, 11:53 PM
|
#8
|
|
Member
Registered: Dec 2005
Location: Detroit, Michigan
Distribution: Ubuntu
Posts: 86
Rep:
|
What type of network card is this? ce ?
/platform/sun4u/kernel/drv/ce.conf:
name="ce" parent="/pci@9,600000" unit-address="1" adv_autoneg_cap=1 adv_1000fdx_cap=1
adv_1000hdx_cap=0 adv_100fdx_cap=0 adv_100hdx_cap=0 adv_10fdx_cap=0 adv_10hdx_cap=0;
Mark
|
|
|
|
06-02-2006, 04:25 AM
|
#9
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
hi all,
i have two nic bge0 and bge1
when i try
ndd -get /dev/bge0 link_mode
operation failed, invalid argument
ndd -get /dev/bge0 link_speed
1000
ndd -get /dev/bge1 link_mode
operation failed, invalid argument
ndd -get /dev/bge1 link_speed
100
this is weird .... is 100 for link_speed meaning 100 Mbps ? any help ?
Last edited by DarReNz; 06-02-2006 at 07:42 AM.
|
|
|
|
06-04-2006, 11:33 AM
|
#10
|
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris10, Solaris 11, Ubuntu, OL
Posts: 9,311
|
Quote:
|
Originally Posted by DarReNz
ndd -get /dev/bge1 link_mode
operation failed, invalid argument
ndd -get /dev/bge1 link_speed
100
this is weird ....
|
Why ?
link_mode is not documented in the bge man page.
Quote:
|
is 100 for link_speed meaning 100 Mbps ?
|
Correct.
|
|
|
|
06-05-2006, 03:42 AM
|
#11
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
this is because referring to this page http://www.brandonhutchinson.com/Sol..._settings.html
# ndd -get /dev/hme link_mode
Interpretation:
0 -- half-duplex
1 -- full-duplex
# ndd -get /dev/hme link_speed
Interpretation:
0 -- 10 Mbit
1 -- 100 Mbit
1000 -- 1 Gbit
i should get a 1 which means it is 100 Mbps instead of 100 right ?
|
|
|
|
06-05-2006, 05:36 AM
|
#12
|
|
Member
Registered: Mar 2006
Posts: 98
Rep:
|
darrenz:
You specified that you had a eri card in your example. As far as I know, such card only supports 10 and 100mbs, not 1gb.
|
|
|
|
06-05-2006, 11:26 PM
|
#13
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
apt what about bge cards ? they support right ?
|
|
|
|
06-06-2006, 02:07 PM
|
#14
|
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris10, Solaris 11, Ubuntu, OL
Posts: 9,311
|
Quote:
|
Originally Posted by DarReNz
apt what about bge cards ? they support right ?
|
They does, your first card (bge0) is reporting it.
|
|
|
|
06-13-2006, 01:20 AM
|
#15
|
|
LQ Newbie
Registered: Apr 2006
Posts: 27
Original Poster
Rep:
|
hi all,
if i wish to change NIC to auto-negotiable and i do
ndd -set /dev/eri adv_autoneg_cap 1
ndd -set /dev/eri adv_100fdx_cap 0
how do i actually check if it is set to autoneg ?
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 08:39 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|