<?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: configure a second IP to a ethernet card in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581449#M229963</link>
    <description>ok, I have done, but now I have, for example:&lt;BR /&gt;# traceroute alfa&lt;BR /&gt;&lt;BR /&gt;traceroute: Warning: Multiple interfaces found; using 172.20.192.133 @ lan0:1&lt;BR /&gt;traceroute to alfa (172.20.102.123), 30 hops max, 40 byte packets&lt;BR /&gt; 1  alfa (172.20.102.123)  0.270 ms  0.138 ms  0.135 ms&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But I want to use lan1:1 :&lt;BR /&gt;# traceroute alfa&lt;BR /&gt;&lt;BR /&gt;traceroute: Warning: Multiple interfaces found; using 172.20.102.169 @ lan1:1&lt;BR /&gt;traceroute to alfa (172.20.102.123), 30 hops max, 40 byte packets&lt;BR /&gt; 1  alfa (172.20.102.123)  0.270 ms  0.138 ms  0.135 ms&lt;BR /&gt;&lt;BR /&gt;How?</description>
    <pubDate>Wed, 13 Jul 2005 06:25:58 GMT</pubDate>
    <dc:creator>uadm26</dc:creator>
    <dc:date>2005-07-13T06:25:58Z</dc:date>
    <item>
      <title>configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581445#M229959</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How con configure a second ip to an ethernet card?&lt;BR /&gt;I need only to use ifconfig?&lt;BR /&gt;Not in lan0 but in lan1.</description>
      <pubDate>Wed, 13 Jul 2005 05:45:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581445#M229959</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2005-07-13T05:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581446#M229960</link>
      <description>&lt;BR /&gt;I believe you can use ethernet alias.&lt;BR /&gt;&lt;BR /&gt;just check alias options in ifconfig (lan0:1)&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Gopi</description>
      <pubDate>Wed, 13 Jul 2005 05:52:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581446#M229960</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-07-13T05:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581447#M229961</link>
      <description>Add it to the /etc/rc.config.d/netconf file:&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;IP_ADDRESS[1]=192.168.164.97&lt;BR /&gt;SUBNET_MASK[1]=255.255.248.0&lt;BR /&gt;INTERFACE_NAME[1]=lan1:1&lt;BR /&gt;BROADCAST_ADDRESS[1]=192.168.167.255&lt;BR /&gt;INTERFACE_STATE[1]=up&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ifconfig lan1:1 up&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 13 Jul 2005 05:57:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581447#M229961</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-07-13T05:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581448#M229962</link>
      <description>Using Geoff's suggestion would make the network configuration permanent and would automatically configure the new IP on a reboot.  This is more than likely what you want to do.&lt;BR /&gt;&lt;BR /&gt;If you're looking to test it out or for a more temporary solution, you can configure it manually via ifconfig command:&lt;BR /&gt;&lt;BR /&gt;ifconfig lan1:1 inet ${ip} netmask ${nm} broadcast ${bc} up&lt;BR /&gt;&lt;BR /&gt;HTH;&lt;BR /&gt;&lt;BR /&gt;Doug</description>
      <pubDate>Wed, 13 Jul 2005 06:05:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581448#M229962</guid>
      <dc:creator>Doug O'Leary</dc:creator>
      <dc:date>2005-07-13T06:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581449#M229963</link>
      <description>ok, I have done, but now I have, for example:&lt;BR /&gt;# traceroute alfa&lt;BR /&gt;&lt;BR /&gt;traceroute: Warning: Multiple interfaces found; using 172.20.192.133 @ lan0:1&lt;BR /&gt;traceroute to alfa (172.20.102.123), 30 hops max, 40 byte packets&lt;BR /&gt; 1  alfa (172.20.102.123)  0.270 ms  0.138 ms  0.135 ms&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But I want to use lan1:1 :&lt;BR /&gt;# traceroute alfa&lt;BR /&gt;&lt;BR /&gt;traceroute: Warning: Multiple interfaces found; using 172.20.102.169 @ lan1:1&lt;BR /&gt;traceroute to alfa (172.20.102.123), 30 hops max, 40 byte packets&lt;BR /&gt; 1  alfa (172.20.102.123)  0.270 ms  0.138 ms  0.135 ms&lt;BR /&gt;&lt;BR /&gt;How?</description>
      <pubDate>Wed, 13 Jul 2005 06:25:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581449#M229963</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2005-07-13T06:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581450#M229964</link>
      <description>man traceroute&lt;BR /&gt;&lt;BR /&gt;Specify the interface with -i&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 13 Jul 2005 06:30:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581450#M229964</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-07-13T06:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581451#M229965</link>
      <description>ok, but traceroute -i just do it in that time not permanently, I want to change use lan0:0 to use lan1:1.</description>
      <pubDate>Wed, 13 Jul 2005 06:51:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581451#M229965</guid>
      <dc:creator>uadm26</dc:creator>
      <dc:date>2005-07-13T06:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581452#M229966</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt; Try &lt;BR /&gt;&lt;BR /&gt;route add command this may solve your problem.&lt;BR /&gt;&lt;BR /&gt;route add "dest ip" "lan1:1 ip"&lt;BR /&gt;&lt;BR /&gt;bye bye &lt;BR /&gt;Jayachandran.G &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jul 2005 07:53:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581452#M229966</guid>
      <dc:creator>jayachandran.g</dc:creator>
      <dc:date>2005-07-13T07:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581453#M229967</link>
      <description>Sir : &lt;BR /&gt;&lt;BR /&gt;    I can't find the path and file "etc/rc.config.d/netconf " ,my o.s is Tru64 5.1B , if I wnat to add second ip address ,how to do ?</description>
      <pubDate>Sat, 13 Aug 2005 20:41:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581453#M229967</guid>
      <dc:creator>陳文賢</dc:creator>
      <dc:date>2005-08-13T20:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: configure a second IP to a ethernet card</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581454#M229968</link>
      <description>You need to ask your question at the tru64 forums. This forum is HPUX only. Here is the lin to tru64 forums:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/familyhome.do?familyId=280" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/familyhome.do?familyId=280&lt;/A&gt;</description>
      <pubDate>Sat, 13 Aug 2005 22:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configure-a-second-ip-to-a-ethernet-card/m-p/3581454#M229968</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-08-13T22:49:24Z</dc:date>
    </item>
  </channel>
</rss>

