How to set full duplex for solaris 5.5


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to set full duplex for solaris 5.5
# 1  
Old 05-15-2009
How to set full duplex for solaris 5.5

I would like to change half duplex to full duplex on solaris 5.5. I tried with below commands but they didnt work on solaris 5.5.
#ndd -set /dev/le adv_100fdx_cap 1
# 2  
Old 05-15-2009
please post the output of "cat /etc/release" to verify your solaris version... also use the search function and you should be able to find threads like this:
https://www.unix.com/unix-dummies-que...ris-10-ce.html

btw. isn't the "le" interface only capable of 10 mbit?

Last edited by DukeNuke2; 05-15-2009 at 04:07 PM..
# 3  
Old 05-18-2009
cat /etc/release
Solaris 2.5.1 SPARCserver-1000

I have no idea that "le" supports 10 mbit. I just want to make "le" full duplex.
# 4  
Old 05-18-2009
Quote:
Originally Posted by DukeNuke2
btw. isn't the "le" interface only capable of 10 mbit?
Seems so. Smilie
A bit of information (unconfirmed):
/dev/dump: NIC driver family trees

The classic duplex setting link:
Solaris NIC speed and duplex settings
# 5  
Old 05-19-2009
when i try with below command it is showing "operation failed". Looks like it is not supporting solaris 2.5.1 "le"
ndd -set /dev/le adv_10fdx_cap 1.
Can anyone help me how to configure full duplex for "le" interface on solaris 2.5.1
# 6  
Old 05-19-2009
try something like this:

Code:
ndd -set /dev/le instance 0  <-- use the right instance number here!
ndd -set /dev/le adv_10fdx_cap 1
ndd -set /dev/le adv_autoneg_cap 0

# 7  
Old 05-20-2009
Used the correct instance but still getting "operation failed"

# ndd -set /dev/le instance 0
operation failed, Invalid argument

# ndd -set /dev/le adv_10fdx_cap 1
operation failed, Invalid argument

# ndd -set /dev/le adv_autoneg_cap 0
operation failed, Invalid argument
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

100Mb/s full duplex link

Hi, I have been trying to connect two computers directly through their LAN cards. One is a 3com 3c905c 10/100 Mbit/s card and the other is an Intel i217-lm 10/100/1000Mbit/s card. I have connected them through a CAT 6 cable. Whenever autoneg is turned on, the PCs connect in the 10Mb/s mode, and... (7 Replies)
Discussion started by: jamie_123
7 Replies

2. Red Hat

1gb full duplex cannot be set to auto-nego off?

Hi all, I've changed eth0 to (#ethtool eth0): Speed: 1000Mb/s Duplex: Full Port: Twisted Pair PHYAD: 1 Transceiver: internal Auto-negotiation: on and (#cat /etc/sysconfig/network-scripts/ifcfg-eth): ETHTOOL_OPTS="autoneg off speed 1000... (3 Replies)
Discussion started by: faraaris
3 Replies

3. Programming

C++/Java full-duplex communication

Hello, here's my situation: I have a C++ server running on a well known machine and a number of Java clients running on other machines (assumed as unknown) on the same LAN. What I want to achieve is full duplex communication between those applications, in order to exchange complex objects and data... (3 Replies)
Discussion started by: demerzel3
3 Replies

4. Solaris

How to find half duplex or full duplex

Hi, How to find whether the server is running with half duplex or full duplex. I tried with the following command ndd -get /dev/ but am not getting any output,. Is the command correct? Also let me know how to change from half to full duplex. (1 Reply)
Discussion started by: rogerben
1 Replies

5. SuSE

configure full duplex

How do I configure full duplex on suse 8.2 I tried ethtool -s eth0 speed 100 duplex full autoneg off the above works but when I reboot the machine the configure was lost. How do I configure full duplex so that when the machine get rebooted the configuration will stay. My interface... (4 Replies)
Discussion started by: hassan2
4 Replies

6. Solaris

How to force a full duplex

I need to change some Ip addresses for my servers to reflect in the NIS map. I also need to force full duplex on the 10/100 cards & 1/2 duplex in the 10 cards. I can change the IP by doing ifconfig <NIC card > plumb up <newip>. Not quite sure on how to force the full / half duplex & how to... (2 Replies)
Discussion started by: Remi
2 Replies

7. Programming

full -duplex ?

what is meant by full duplex and half duplex? b'coz in differences b\w hub and switch ,i heard lot this duplex word so please help me (1 Reply)
Discussion started by: parvathy
1 Replies

8. UNIX for Dummies Questions & Answers

Full Duplex Howto

Dear Members, I was reading a few posts and saw something about installing two Nics so one could use Full Duplex. I remember back in the day of dial up, you could have two modems and use one for upstream and one for downstream. This was called shotgunning. It seems that you can now do the same... (4 Replies)
Discussion started by: Phobos
4 Replies

9. UNIX for Dummies Questions & Answers

Full duplex at HUB?

Ok at the moment I have a hub whit 5 computers connected to it. It's a 10/100 NetGear hub. Ok I heard that there is some command I can run or a file I edit or something like that. But what the command/file/script/whatever does is tells you what connect speed it's connecting to the hub to. ... (4 Replies)
Discussion started by: merlin
4 Replies
Login or Register to Ask a Question