<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Setting 100 Full Duplex in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885282#M546501</link>
    <description>My /etc/rc.config.d/hpbtlanconf file:&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[0]=lan1&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[0]=&lt;BR /&gt;HP_BTLAN_SPEED[0]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[8]=lan8&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[8]=&lt;BR /&gt;HP_BTLAN_SPEED[8]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[9]=lan0&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[9]=&lt;BR /&gt;HP_BTLAN_SPEED[9]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INIT_ARGS="HP_BTLAN_STATION_ADDRESS HP_BTLAN_SPEED"&lt;BR /&gt;&lt;BR /&gt;# End of hpbtlanconf configuration file&lt;BR /&gt;&lt;BR /&gt;Configure switching ports in mode&lt;BR /&gt;&lt;BR /&gt;"full-duplex-autonegotiation_off"&lt;BR /&gt;&lt;BR /&gt;rgs&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Oct 2006 05:51:14 GMT</pubDate>
    <dc:creator>rariasn</dc:creator>
    <dc:date>2006-10-24T05:51:14Z</dc:date>
    <item>
      <title>Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885277#M546496</link>
      <description>&lt;!--!*#--&gt;OK, here is the info. My driver is btlan.&lt;BR /&gt;&lt;BR /&gt;# ioscan -kfnC lan&lt;BR /&gt;Class     I  H/W Path     Driver   S/W State   H/W Type     Description&lt;BR /&gt;========================================================================&lt;BR /&gt;lan       0  0/0/0/0      btlan    CLAIMED     INTERFACE    HP PCI 10/100Base-TX Core&lt;BR /&gt;lan       1  0/1/0/0      gelan    CLAIMED     INTERFACE    HP A4926A PCI 1000Base-SX Adapter&lt;BR /&gt;lan       2  0/3/0/0/4/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       3  0/3/0/0/5/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       4  0/3/0/0/6/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       5  0/3/0/0/7/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       6  0/6/0/0/4/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       7  0/6/0/0/5/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       8  0/6/0/0/6/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;lan       9  0/6/0/0/7/0  btlan    CLAIMED     INTERFACE    HP A5506A PCI 10/100Base-TX 4 Port&lt;BR /&gt;&lt;BR /&gt;# grep -i lanadmin /sbin/init.d/hpbtlan&lt;BR /&gt;&lt;BR /&gt;#                            configured through lanadmin(1m)&lt;BR /&gt;#       NOTE : no lanadmin command is executed since defaults are in use&lt;BR /&gt;#       lanadmin -M 1400 -X 100FD 1&lt;BR /&gt;#       lanadmin -A 0x0800090fffff 2&lt;BR /&gt;# Check for lanadmin, lanscan commands&lt;BR /&gt;HPLANADMIN=/usr/sbin/lanadmin&lt;BR /&gt;if [ ! -x "$HPLANADMIN" ]; then&lt;BR /&gt;   echo "ERROR: missing file \"$HPLANADMIN\"" &amp;gt;&amp;amp;2&lt;BR /&gt;# Do lanadmin commands for each interface&lt;BR /&gt;         # the same, skip the lanadmin command. This is required &lt;BR /&gt;         cur_mac=`lanadmin -a $PPA | awk '{print $4}'`&lt;BR /&gt;         cur_mtu=$(lanadmin -m $PPA | awk '{ print $4 }' )&lt;BR /&gt;         cur_spd=`lanadmin -x $PPA | awk '{print $6}'`&lt;BR /&gt;            cur_spd=`lanadmin -x $PPA | awk '{print $4}'`&lt;BR /&gt;            cur_dup=`lanadmin -x $PPA | awk '{print $5}'`&lt;BR /&gt;            cur_dup=`lanadmin -x $PPA | awk '{print $5}'`&lt;BR /&gt;            emsg=`$HPLANADMIN $ADDRESS $MTU $DUPLEX $SPEED $PPA 2&amp;gt;&amp;amp;1`&lt;BR /&gt;        emsg=`$HPLANADMIN -X set_param refill $REFILL $ppa 2&amp;gt;&amp;amp;1`&lt;BR /&gt;        emsg=`$HPLANADMIN -X set_param pbl $PBL $ppa 2&amp;gt;&amp;amp;1`&lt;BR /&gt;        emsg=`$HPLANADMIN -X set_param cal $CAL $ppa 2&amp;gt;&amp;amp;1`&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And here is where I manually set it. Apparently it took it, but how do I modify the above script to make this change permanent?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# lanadmin -X 100FD 0&lt;BR /&gt;&lt;BR /&gt;WARNING: an incorrect setting could cause serious network problems!!!&lt;BR /&gt;&lt;BR /&gt;Driver is attempting to set the new speed&lt;BR /&gt;Reset will take approximately 11 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# lanadmin -x 0&lt;BR /&gt;Current Config                   = 100 Full-Duplex MANUAL&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Oct 2006 16:34:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885277#M546496</guid>
      <dc:creator>dictum9</dc:creator>
      <dc:date>2006-10-23T16:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885278#M546497</link>
      <description>You don't modify that script.&lt;BR /&gt;&lt;BR /&gt;You modify /etc/rc.config.d/hpbtlanconf to set the speed.</description>
      <pubDate>Mon, 23 Oct 2006 16:37:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885278#M546497</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-10-23T16:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885279#M546498</link>
      <description>Add &lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_SPEED[0]=100FD &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;in /etc/rc.config.d/hpbtlanconf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;ivan</description>
      <pubDate>Mon, 23 Oct 2006 16:42:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885279#M546498</guid>
      <dc:creator>Ivan Krastev</dc:creator>
      <dc:date>2006-10-23T16:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885280#M546499</link>
      <description>&lt;!--!*#--&gt;Just as an FYI, here is the list of drivers and the appropriate file in /etc/rc.config.d to modify for that driver:&lt;BR /&gt;&lt;BR /&gt;Driver      File to modify&lt;BR /&gt;btlan       /etc/rc.config.d/hpbtlanconf&lt;BR /&gt;btlan0      /etc/rc.config.d/hpeisabtconf&lt;BR /&gt;btlan1      /etc/rc.config.d/hpbasetconf&lt;BR /&gt;btlan3      /etc/rc.config.d/hpbase100conf&lt;BR /&gt;btlan4      /etc/rc.config.d/hpgsc100conf&lt;BR /&gt;btlan5      /etc/rc.config.d/hppci100conf&lt;BR /&gt;btlan6      /etc/rc.config.d/hpsppci100conf&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Oct 2006 16:53:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885280#M546499</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-10-23T16:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885281#M546500</link>
      <description>&lt;BR /&gt;I usually use SAM to set it.</description>
      <pubDate>Mon, 23 Oct 2006 19:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885281#M546500</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2006-10-23T19:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885282#M546501</link>
      <description>My /etc/rc.config.d/hpbtlanconf file:&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[0]=lan1&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[0]=&lt;BR /&gt;HP_BTLAN_SPEED[0]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[8]=lan8&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[8]=&lt;BR /&gt;HP_BTLAN_SPEED[8]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INTERFACE_NAME[9]=lan0&lt;BR /&gt;HP_BTLAN_STATION_ADDRESS[9]=&lt;BR /&gt;HP_BTLAN_SPEED[9]=100FD&lt;BR /&gt;&lt;BR /&gt;HP_BTLAN_INIT_ARGS="HP_BTLAN_STATION_ADDRESS HP_BTLAN_SPEED"&lt;BR /&gt;&lt;BR /&gt;# End of hpbtlanconf configuration file&lt;BR /&gt;&lt;BR /&gt;Configure switching ports in mode&lt;BR /&gt;&lt;BR /&gt;"full-duplex-autonegotiation_off"&lt;BR /&gt;&lt;BR /&gt;rgs&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2006 05:51:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885282#M546501</guid>
      <dc:creator>rariasn</dc:creator>
      <dc:date>2006-10-24T05:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885283#M546502</link>
      <description>I go with Rariasn has published.&lt;BR /&gt;Especialy the attention to your port&lt;BR /&gt;is auto-negotation off. So it is ficed port to port.&lt;BR /&gt;&lt;BR /&gt;Adapting the script is permanent during each boot.&lt;BR /&gt;&lt;BR /&gt;It seems you have already tested it&lt;BR /&gt;successfully and your lancard&lt;BR /&gt;supports it. So you can safely&lt;BR /&gt;adapt your script as shown.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2006 07:21:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885283#M546502</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-10-24T07:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885284#M546503</link>
      <description>rariasn &lt;BR /&gt;&lt;BR /&gt;This is good info, but where do you get the HP_BTLAN_interface_name[x] from?  I know what lan0, lan2 is but that number in the bracket [ ]&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2006 08:51:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885284#M546503</guid>
      <dc:creator>dictum9</dc:creator>
      <dc:date>2006-10-24T08:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885285#M546504</link>
      <description>That is just the index number for the value triplets.&lt;BR /&gt;&lt;BR /&gt;The first triplet would be index [0], the second index [1] and so on.  It does not necessarily relate to the lan? interface numbers.&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Oct 2006 14:52:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885285#M546504</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-10-24T14:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885286#M546505</link>
      <description>Do you _really_ have to go with hardcoding?  The NICs driven by the btlan driver should autoneg just fine, so unless you are stuck with a hopelessly broken switch, leaving things at autoneg might be better.</description>
      <pubDate>Tue, 24 Oct 2006 19:52:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885286#M546505</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2006-10-24T19:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Setting 100 Full Duplex</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885287#M546506</link>
      <description>What Rick is saying is the ideal situation,&lt;BR /&gt;and in most cases it is like that.&lt;BR /&gt;&lt;BR /&gt;However, you are then dependent on your&lt;BR /&gt;network hardware, event when it works well,&lt;BR /&gt;glitches are not unthinkable.&lt;BR /&gt;We had the odd incident once in a while.&lt;BR /&gt;&lt;BR /&gt;The most important nodes in our network&lt;BR /&gt;we have hardcoded through the script.&lt;BR /&gt;I have had no incident at all since then.&lt;BR /&gt;&lt;BR /&gt;So better the devil you know then you don't.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Oct 2006 02:35:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-100-full-duplex/m-p/3885287#M546506</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-10-25T02:35:21Z</dc:date>
    </item>
  </channel>
</rss>

