<?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: The lanadmin command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769798#M785933</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;lanadmin is used to configure your lan interfaces from command line, if you dont want to use SAM.&lt;BR /&gt;&lt;BR /&gt;use lanscan to find details of lan interface and then lanadmin to configure as required, like examples already given.&lt;BR /&gt;&lt;BR /&gt;#man lanadmin for more details&lt;BR /&gt;&lt;BR /&gt;Andy</description>
    <pubDate>Tue, 11 Apr 2006 09:33:21 GMT</pubDate>
    <dc:creator>Andrew Rutter</dc:creator>
    <dc:date>2006-04-11T09:33:21Z</dc:date>
    <item>
      <title>The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769795#M785930</link>
      <description>Hi guys,&lt;BR /&gt;&lt;BR /&gt;Just wandered, what is the 'lanadmin' normally used for? &lt;BR /&gt;Also, what sort of options do we have available for the lanadmin command and how can these be used?&lt;BR /&gt;&lt;BR /&gt;Your information will be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Habib</description>
      <pubDate>Tue, 11 Apr 2006 07:03:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769795#M785930</guid>
      <dc:creator>Habib_4</dc:creator>
      <dc:date>2006-04-11T07:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769796#M785931</link>
      <description>man landmin&lt;BR /&gt;lanadmin -sx "nm_id_of_card"&lt;BR /&gt;gives speed and duplex settings.&lt;BR /&gt;lanadmin -X "nm_id_of_card" sets dumplex settings.</description>
      <pubDate>Tue, 11 Apr 2006 07:08:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769796#M785931</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2006-04-11T07:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769797#M785932</link>
      <description>The most common usage is to query or set speed and duplex options on your NIC.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 11 Apr 2006 07:20:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769797#M785932</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-04-11T07:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769798#M785933</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;lanadmin is used to configure your lan interfaces from command line, if you dont want to use SAM.&lt;BR /&gt;&lt;BR /&gt;use lanscan to find details of lan interface and then lanadmin to configure as required, like examples already given.&lt;BR /&gt;&lt;BR /&gt;#man lanadmin for more details&lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Tue, 11 Apr 2006 09:33:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769798#M785933</guid>
      <dc:creator>Andrew Rutter</dc:creator>
      <dc:date>2006-04-11T09:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769799#M785934</link>
      <description>Hi Habib:&lt;BR /&gt;&lt;BR /&gt;The 'lanadmin' command can be run in menu mode to show LAN Interface status and statistics registers, too.&lt;BR /&gt;&lt;BR /&gt;# lanadmin -&amp;gt; lan -&amp;gt; display&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 11 Apr 2006 09:41:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769799#M785934</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-11T09:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769800#M785935</link>
      <description>Here's an example in a script:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;# script to check speed and settings of lan cards&lt;BR /&gt;PATH=/usr/sbin:/usr/bin&lt;BR /&gt;ppas=`lanscan | awk '$3~/^[0-9]$/{print $3}' | xargs`&lt;BR /&gt;for i in $ppas&lt;BR /&gt;do&lt;BR /&gt;printf "Card at PPA %s - " $i&lt;BR /&gt;ipa=`ifconfig lan${i} 2&amp;gt;/dev/null | awk '{ip=$2}END{if(ip==""){printf("Not assigned")}else{printf("%s ",ip)}}'`&lt;BR /&gt;printf "IP Address: %15s- " "$ipa"&lt;BR /&gt;lanadmin -x $i 2&amp;gt;/dev/null | awk '{$1="";printf("%s",$0)}'&lt;BR /&gt;echo ""&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Apr 2006 13:06:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769800#M785935</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-04-11T13:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769801#M785936</link>
      <description>One of the most useful options is to display the card statistics. This provides a health and performance check on both the card and network. It runs in interactive mode (menu of choices) with no options and batch mode with options.</description>
      <pubDate>Tue, 11 Apr 2006 20:46:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769801#M785936</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-04-11T20:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: The lanadmin command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769802#M785937</link>
      <description>Hi Habib,&lt;BR /&gt;See the following link,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/J4240-90033/ch07s03.html" target="_blank"&gt;http://docs.hp.com/en/J4240-90033/ch07s03.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Asif Sharif</description>
      <pubDate>Wed, 12 Apr 2006 08:41:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/the-lanadmin-command/m-p/3769802#M785937</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2006-04-12T08:41:14Z</dc:date>
    </item>
  </channel>
</rss>

