<?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: 2 EtherExpress cards - only 1 is seen in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553772#M89530</link>
    <description>Peter,&lt;BR /&gt;&lt;BR /&gt;The approach I have always taken in regards to two network cards in the same system is to use modules and pass the io and irq information via /etc/conf.modules or /etc/modules.conf (depending on the distribution of linux) to guarantee that eth0 and eth1 always point to the same card. Further description/steps are contained within:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linuxdoc.org/HOWTO/Net-HOWTO/x1100.html" target="_blank"&gt;http://www.linuxdoc.org/HOWTO/Net-HOWTO/x1100.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Under Redhat, modify the /etc/sysconfig/networkscripts/ifcfg-eth0 and ifcfg-eth1 for the network card to initialise on boot with all the config information you require.</description>
    <pubDate>Wed, 18 Jul 2001 00:37:39 GMT</pubDate>
    <dc:creator>Shane Hjorth</dc:creator>
    <dc:date>2001-07-18T00:37:39Z</dc:date>
    <item>
      <title>2 EtherExpress cards - only 1 is seen</title>
      <link>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553770#M89528</link>
      <description>I have a system with two Intel EtherExpress Pro 100 cards installed in an LH4r.&lt;BR /&gt;&lt;BR /&gt;1. Suse 7.2 reports that 3 Cards are installed.&lt;BR /&gt;&lt;BR /&gt;2. Only one card is detected with an assigned MAC address and therefore configurable for TCP/IP.&lt;BR /&gt;&lt;BR /&gt;How do I ensure that both cards are seen correctly before I then begin with the IP addressing (on different subnets)?</description>
      <pubDate>Tue, 17 Jul 2001 13:27:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553770#M89528</guid>
      <dc:creator>Peter Bilitch_1</dc:creator>
      <dc:date>2001-07-17T13:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: 2 EtherExpress cards - only 1 is seen</title>
      <link>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553771#M89529</link>
      <description>I have discovered the following possible solutions:&lt;BR /&gt;&lt;BR /&gt;Try entering the following (relevant) information at the LILO boot: command line:&lt;BR /&gt;boot: linux ether=5,0x300,eth0 ether=15,0x320,eth1&lt;BR /&gt;&lt;BR /&gt;If this works correctly then, for the second card to be automatically seen at boot, you can add the following to the lilo.conf file:&lt;BR /&gt;append="ether=15,0x320,eth1"&lt;BR /&gt;&lt;BR /&gt;Also you can manually insert the following insmod command:&lt;BR /&gt;insmod -o eth1 eepro100 irq=15 io=0x320&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Jul 2001 13:44:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553771#M89529</guid>
      <dc:creator>Peter Bilitch_1</dc:creator>
      <dc:date>2001-07-17T13:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: 2 EtherExpress cards - only 1 is seen</title>
      <link>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553772#M89530</link>
      <description>Peter,&lt;BR /&gt;&lt;BR /&gt;The approach I have always taken in regards to two network cards in the same system is to use modules and pass the io and irq information via /etc/conf.modules or /etc/modules.conf (depending on the distribution of linux) to guarantee that eth0 and eth1 always point to the same card. Further description/steps are contained within:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linuxdoc.org/HOWTO/Net-HOWTO/x1100.html" target="_blank"&gt;http://www.linuxdoc.org/HOWTO/Net-HOWTO/x1100.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Under Redhat, modify the /etc/sysconfig/networkscripts/ifcfg-eth0 and ifcfg-eth1 for the network card to initialise on boot with all the config information you require.</description>
      <pubDate>Wed, 18 Jul 2001 00:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553772#M89530</guid>
      <dc:creator>Shane Hjorth</dc:creator>
      <dc:date>2001-07-18T00:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: 2 EtherExpress cards - only 1 is seen</title>
      <link>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553773#M89531</link>
      <description>Hi Peter,&lt;BR /&gt;&lt;BR /&gt;Another way to do :&lt;BR /&gt;&lt;BR /&gt;Just edit your /etc/modules.conf file. Normally, you should have something like :&lt;BR /&gt;&lt;BR /&gt;alias eth0 eepro100&lt;BR /&gt;alias eth1 off&lt;BR /&gt;&lt;BR /&gt;Just change the second line like this :&lt;BR /&gt;&lt;BR /&gt;alias eth1 eepro100&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;After that, type :&lt;BR /&gt;&lt;BR /&gt;depmod -a&lt;BR /&gt;&lt;BR /&gt;Then, you can configure your second network card, using YaST (1 or 2), or manually with "ifconfig".&lt;BR /&gt;&lt;BR /&gt;The third network interface is may be the one reserved for remote administration with TopTools. Don't care, except if you are using TopTools agent on Linux.&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Jul 2001 20:56:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/2-etherexpress-cards-only-1-is-seen/m-p/2553773#M89531</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2001-07-27T20:56:33Z</dc:date>
    </item>
  </channel>
</rss>

