Results 1 to 6 of 6
  1. #1
    soap is offline Newbie
    Join Date
    Jun 2009
    Posts
    8

    How to set full duplex in solaris?

    Hello Guys,

    How to set the network port to full duplex? In the switch already set to Full Duplex.

  2. #2
    ryan1210 is offline Newbie
    Join Date
    Feb 2009
    Posts
    4
    To specify full-duplex mode on full-duplex single-mode and multimode port adapters, use the full-duplex command.
    full-duplex

  3. #3
    ryan1210 is offline Newbie
    Join Date
    Feb 2009
    Posts
    4
    Example

    The following example configures full-duplex mode on the Cisco 4500:
    interface ethernet 0
    full-duplex

  4. #4
    russo is offline Newbie
    Join Date
    Jan 2009
    Posts
    8
    I'm also intereseted to know. Is there a configuration file to do it? I want to set it up in boot up.

  5. #5
    hussain is offline Newbie
    Join Date
    Jun 2009
    Posts
    12
    I believe you can change on /etc/system file.

  6. #6
    hussain is offline Newbie
    Join Date
    Jun 2009
    Posts
    12
    More help.....

    Setting NIC speed and duplex

    Solaris is often unable to correctly auto-negotiate duplex settings with a link partner (e.g. switch), especially when the switch is set to 100Mbit full-duplex. You can force the NIC into 100Mbit full-duplex by disabling auto-negotiation and 100Mbit half-duplex capability.

    Example with hme0:

    1. Make the changes to the running system.
    # ndd -set /dev/hme adv_100hdx_cap 0
    # ndd -set /dev/hme adv_100fdx_cap 1
    # ndd -set /dev/hme adv_autoneg_cap 0

    2. Make kernel parameter changes to preserve the speed and duplex settings after a reboot.
    # vi /etc/system

    Add:
    # set hme:hme_adv_autoneg_cap=0
    # set hme:hme_adv_100hdx_cap=0
    # set hme:hme_adv_100fdx_cap=1

    Note: the /etc/system change affects all hme interfaces if multiple NICs are present (e.g. hme0, hme1).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •