<?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: netmask in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142874#M540792</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;Also, you could have a look on /etc/rc.config.d/netconf file.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;&lt;BR /&gt;Ramesh</description>
    <pubDate>Mon, 11 Feb 2008 08:10:38 GMT</pubDate>
    <dc:creator>Ramesh S</dc:creator>
    <dc:date>2008-02-11T08:10:38Z</dc:date>
    <item>
      <title>netmask</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142872#M540790</link>
      <description>&lt;BR /&gt;how i can find netmask address with the help  of netstat command ? or any other command or file is there?</description>
      <pubDate>Mon, 11 Feb 2008 06:20:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142872#M540790</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-02-11T06:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: netmask</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142873#M540791</link>
      <description>hi you can use ifconfig command to find subnetmask&lt;BR /&gt;ifconfig &lt;INTERFACE&gt;&lt;BR /&gt;subnet would be in hex like ffffff00&lt;BR /&gt;so ff ff ff 00 qould be&lt;BR /&gt;255.255.255.0&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil&lt;/INTERFACE&gt;</description>
      <pubDate>Mon, 11 Feb 2008 06:28:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142873#M540791</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2008-02-11T06:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: netmask</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142874#M540792</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Also, you could have a look on /etc/rc.config.d/netconf file.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;&lt;BR /&gt;Ramesh</description>
      <pubDate>Mon, 11 Feb 2008 08:10:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142874#M540792</guid>
      <dc:creator>Ramesh S</dc:creator>
      <dc:date>2008-02-11T08:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: netmask</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142875#M540793</link>
      <description>netstat -nrv?&lt;BR /&gt;127.0.0.1/255.255.255.255       127.0.0.1          UH    0    lo0       32808&lt;BR /&gt;12.12.12.12/255.255.255.255     12.12.12.12        UH    0    lan0      32808&lt;BR /&gt;192.168.0.24/255.255.255.255    192.168.0.24       UH    0    clic1     32808&lt;BR /&gt;192.168.1.24/255.255.255.255    192.168.1.24       UH    0    clic0     32808&lt;BR /&gt;192.168.1.0/255.255.255.0       192.168.1.24       U     2    clic0     31744&lt;BR /&gt;192.168.0.0/255.255.248.0       192.168.0.24       U     2    clic1     31744&lt;BR /&gt;12.0.0.0/255.0.0.0              12.12.12.12        U     2    lan0       1500&lt;BR /&gt;127.0.0.0/255.0.0.0             127.0.0.1          U     0    lo0       32808&lt;BR /&gt;default/0.0.0.0                 12.12.16.1        UG    0    lan4       1500&lt;BR /&gt;&lt;BR /&gt;Then lines where you see the netmasks are those where the gateway is your NIC addresses, but with only the flag U ( not UH)</description>
      <pubDate>Mon, 11 Feb 2008 09:02:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142875#M540793</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2008-02-11T09:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: netmask</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142876#M540794</link>
      <description>Bonjour,&lt;BR /&gt;&lt;BR /&gt;Probably a mix of some commands. For example :&lt;BR /&gt;&lt;BR /&gt;netstat -in | egrep -v "^Name|^lo0" | while read LAN rab&lt;BR /&gt;do ifconfig $LAN | egrep inet | read rab IP rab NM rab&lt;BR /&gt;   echo "$LAN : $IP / $NM"&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;will output :&lt;BR /&gt;&lt;BR /&gt;lan1 : 192.168.111.177 / ffffff00&lt;BR /&gt;lan0 : 10.33.70.12 / ffff0000&lt;BR /&gt;&lt;BR /&gt;Hope this will help&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Eric</description>
      <pubDate>Mon, 11 Feb 2008 09:48:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/netmask/m-p/4142876#M540794</guid>
      <dc:creator>Eric SAUBIGNAC</dc:creator>
      <dc:date>2008-02-11T09:48:48Z</dc:date>
    </item>
  </channel>
</rss>

