<?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: how to make a permanent route in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520166#M533902</link>
    <description>can you post your "/etc/rc.config.d/netconf &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;can we try like&lt;BR /&gt;&lt;BR /&gt;route add net &lt;IP_ADDRESS&gt; netmask &lt;NET_MASK&gt; &lt;GATE_WAYIP&gt; 1&lt;BR /&gt;&lt;BR /&gt;&lt;/GATE_WAYIP&gt;&lt;/NET_MASK&gt;&lt;/IP_ADDRESS&gt;</description>
    <pubDate>Thu, 12 Nov 2009 07:51:54 GMT</pubDate>
    <dc:creator>Johnson Punniyalingam</dc:creator>
    <dc:date>2009-11-12T07:51:54Z</dc:date>
    <item>
      <title>how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520156#M533892</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;does anyone know how to make permanent route and even after server reboot, the route will still be existed in routing table?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Oct 2009 12:34:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520156#M533892</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-10-23T12:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520157#M533893</link>
      <description>Sure. Edit /etc/rc.config.d/netconf and add your permanent route in there.&lt;BR /&gt;&lt;BR /&gt;For example, if you want this route made permanent:&lt;BR /&gt;&lt;BR /&gt;route add net 10.20.30.0 netmask 255.255.255.0 10.2.2.2 1&lt;BR /&gt;&lt;BR /&gt;... you would add lines like this to the netconf file:&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[x]="net 10.20.30.0"&lt;BR /&gt;ROUTE_MASK[x]="255.255.255.0"&lt;BR /&gt;ROUTE_GATEWAY[x]="10.2.2.2"&lt;BR /&gt;ROUTE_COUNT[x]=1&lt;BR /&gt;&lt;BR /&gt;Replace "x" with the first unused index number for a set of route entries. Usually the default gateway is defined with index 0.&lt;BR /&gt;If you have no other permanent routes defined yet, "x" would be 1 in your new route configuration lines.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Fri, 23 Oct 2009 12:48:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520157#M533893</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-10-23T12:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520158#M533894</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;Thanks. What happen if the destination is a server, and I don't really quite sure the gateway. Could your given guide works well ?&lt;BR /&gt;&lt;BR /&gt;Appreciate that.</description>
      <pubDate>Fri, 23 Oct 2009 12:56:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520158#M533894</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-10-23T12:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520159#M533895</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;I change the route information in /etc/rc.config.d/netconf&lt;BR /&gt;&lt;BR /&gt;Note: Backup copies should not reside in /etc/rc.config.d&lt;BR /&gt;&lt;BR /&gt;You can set default routes and secondary routes.&lt;BR /&gt;&lt;BR /&gt;netstat -rn&lt;BR /&gt;# To see the results.&lt;BR /&gt;&lt;BR /&gt;Be careful about typoes in that file, which has fairly good internal documentation.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 23 Oct 2009 13:07:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520159#M533895</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-10-23T13:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520160#M533896</link>
      <description>The default route/gateway specification looks like this (replace 11.22.33.44 with your default gateway):&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[0]="default"&lt;BR /&gt;ROUTE_MASK[0]=""&lt;BR /&gt;ROUTE_GATEWAY[0]="11.22.33.44"&lt;BR /&gt;ROUTE_COUNT[0]=1&lt;BR /&gt;&lt;BR /&gt;The index number [in brackets] for the default gateway is typically 0, because this entry is usually created by the OS installation procedure. All other permanent routes are created by the sysadmin.&lt;BR /&gt;&lt;BR /&gt;A single-host route would be specified like this:&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[x]="host 10.11.12.13"&lt;BR /&gt;ROUTE_MASK[x]=""&lt;BR /&gt;ROUTE_GATEWAY[x]="22.33.44.55"&lt;BR /&gt;ROUTE_COUNT[x]=1&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Fri, 23 Oct 2009 15:43:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520160#M533896</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-10-23T15:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520161#M533897</link>
      <description>hi MK,&lt;BR /&gt;&lt;BR /&gt;Does any network services need to restarted after modification ?&lt;BR /&gt;&lt;BR /&gt;Is that correct ?&lt;BR /&gt;&amp;gt; /sbin/init.d/net stop and start &lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 26 Oct 2009 04:28:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520161#M533897</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-10-26T04:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520162#M533898</link>
      <description>Any changes to /etc/rc.config.d/netconf take effect only when "/sbin/init.d/net start" is executed, which happens automatically at system reboot.&lt;BR /&gt;&lt;BR /&gt;If you are not familiar with editing the /etc/rc.config.d/netconf file, running "/sbin/init.d/net stop; /sbin/init.d/net start" or rebooting the system is recommended to confirm that your syntax is correct.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But running /sbin/init.d/net may cause a total loss of all network connections for a few seconds: it does more actions than is strictly necessary for adding a route. If you need to add a new route without any kind of service interruption, you *can* add the route using the "route" command without any service interruption, and edit /etc/rc.config.d/netconf to cause the new route be auto-added at system startup. &lt;BR /&gt;&lt;BR /&gt;Of course, if you do this, you should document the change so that you and your fellow sysadmins will know where to start troubleshooting if the system does not successfully start up networking after the next scheduled maintenance break...&lt;BR /&gt;&lt;BR /&gt;NOTE: if you want to keep a backup version of the /etc/rc.config.d/netconf file, do not leave the backup in /etc/rc.config.d directory: move it somewhere else.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Mon, 26 Oct 2009 05:36:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520162#M533898</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-10-26T05:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520163#M533899</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;can you advise why it still encounter error in adding route to 10.200.64.132 via lan2? In fact lan2 is pingable&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;psa1a:/root# /sbin/init.d/net stop&lt;BR /&gt;psa1a:/root# /sbin/init.d/net start&lt;BR /&gt;ERROR:  Failed to add route entry because its interface is not&lt;BR /&gt;        yet initialized.  May need to add this route entry with&lt;BR /&gt;        a route commad after the interface is up :&lt;BR /&gt;        add host 10.200.64.132: gateway 172.19.149.140: Network is unreachable&lt;BR /&gt;psa1a:/root#&lt;BR /&gt;psa1a:/root# ping 172.19.149.140&lt;BR /&gt;PING 172.19.149.140: 64 byte packets&lt;BR /&gt;64 bytes from 172.19.149.140: icmp_seq=0. time=0. ms&lt;BR /&gt;64 bytes from 172.19.149.140: icmp_seq=1. time=0. ms&lt;BR /&gt;&lt;BR /&gt;----172.19.149.140 PING Statistics----&lt;BR /&gt;2 packets transmitted, 2 packets received, 0% packet loss&lt;BR /&gt;round-trip (ms)  min/avg/max = 0/0/0&lt;BR /&gt;psa1a:/root# ifconfig lan2&lt;BR /&gt;lan2: flags=1843&lt;UP&gt;&lt;BR /&gt;        inet 172.19.149.140 netmask ffffff80 broadcast 172.19.149.255&lt;BR /&gt;&lt;/UP&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:05:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520163#M533899</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-11-12T07:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520164#M533900</link>
      <description>&amp;gt;&amp;gt;psa1a:/root# /sbin/init.d/net stop&lt;BR /&gt;psa1a:/root# /sbin/init.d/net start&lt;BR /&gt;ERROR: Failed to add route entry because its interface is not&lt;BR /&gt;yet initialized. May need to add this route entry with&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;why did you do this &amp;lt;&lt;MATTI&gt;&amp;gt; already explained to you , you just adding the route&lt;BR /&gt;&lt;BR /&gt;can post below&lt;BR /&gt;&lt;BR /&gt;ioscan -fnC lan&lt;BR /&gt;netstat -in&lt;BR /&gt;netstat -rn&lt;/MATTI&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:33:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520164#M533900</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-12T07:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520165#M533901</link>
      <description>psa1a:/root# ioscan -fnC 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/1/2/0      igelan   CLAIMED     INTERFACE    HP PCI 1000Base-T Core&lt;BR /&gt;lan       1  0/3/1/0/6/0  iether   CLAIMED     INTERFACE    HP AD193-60001 PCI/PCI-X 1000Base-T 4Gb FC/1000B-T Combo Adapter&lt;BR /&gt;lan       2  0/4/1/0/6/0  iether   CLAIMED     INTERFACE    HP AD193-60001 PCI/PCI-X 1000Base-T 4Gb FC/1000B-T Combo Adapter&lt;BR /&gt;lan       3  0/6/1/0      iether   CLAIMED     INTERFACE    HP AD331-60001 PCI/PCI-X 1000Base-T Adapter&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;psa1a:/root# netstat -in&lt;BR /&gt;Name      Mtu  Network         Address         Ipkts   Ierrs Opkts   Oerrs Coll&lt;BR /&gt;lan0:1    1500 172.19.149.96   172.19.149.105  6230860 0     5799123 0     0&lt;BR /&gt;lan3*     1500 none            none            0       0     0       0     0&lt;BR /&gt;lan2      1500 172.19.149.128  172.19.149.140  89637   0     153384  0     0&lt;BR /&gt;lan1*     1500 none            none            0       0     0       0     2&lt;BR /&gt;lan0      1500 172.19.149.96   172.19.149.103  1608065 0     3613124 0     0&lt;BR /&gt;lo0       4136 127.0.0.0       127.0.0.1       730889  0     730889  0     0&lt;BR /&gt;lan2:1    1500 172.19.149.128  172.19.149.142  0       0     28      0     0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;psa1a:/root# netstat -rn&lt;BR /&gt;Routing tables&lt;BR /&gt;Destination           Gateway            Flags   Refs Interface  Pmtu&lt;BR /&gt;127.0.0.1             127.0.0.1          UH        0  lo0        4136&lt;BR /&gt;172.19.149.142        172.19.149.142     UH        0  lan2:1     4136&lt;BR /&gt;172.19.149.140        172.19.149.140     UH        0  lan2       4136&lt;BR /&gt;172.19.149.103        172.19.149.103     UH        0  lan0       4136&lt;BR /&gt;172.19.149.105        172.19.149.105     UH        0  lan0:1     4136&lt;BR /&gt;10.200.64.132         172.19.149.105     UH        0  lan0:1        0&lt;BR /&gt;172.19.149.96         172.19.149.103     U         3  lan0       1500&lt;BR /&gt;172.19.149.96         172.19.149.105     U         3  lan0:1     1500&lt;BR /&gt;172.19.149.128        172.19.149.140     U         3  lan2       1500&lt;BR /&gt;172.19.149.128        172.19.149.142     U         3  lan2:1     1500&lt;BR /&gt;10.200.64.132         172.19.149.105     UH        0  lan0:1     1500&lt;BR /&gt;10.200.64.132         172.19.149.103     UH        0  lan0       1500&lt;BR /&gt;10.200.64.132         172.19.149.140     UH        0  lan2       1500&lt;BR /&gt;127.0.0.0             127.0.0.1          U         0  lo0           0&lt;BR /&gt;default               172.19.149.126     UG        0  lan0          0&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:40:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520165#M533901</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-11-12T07:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520166#M533902</link>
      <description>can you post your "/etc/rc.config.d/netconf &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;can we try like&lt;BR /&gt;&lt;BR /&gt;route add net &lt;IP_ADDRESS&gt; netmask &lt;NET_MASK&gt; &lt;GATE_WAYIP&gt; 1&lt;BR /&gt;&lt;BR /&gt;&lt;/GATE_WAYIP&gt;&lt;/NET_MASK&gt;&lt;/IP_ADDRESS&gt;</description>
      <pubDate>Thu, 12 Nov 2009 07:51:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520166#M533902</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-12T07:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520167#M533903</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;This what had added into netconf prior to this&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[0]=default&lt;BR /&gt;ROUTE_GATEWAY[0]=172.19.149.126&lt;BR /&gt;ROUTE_COUNT[0]=1&lt;BR /&gt;&lt;BR /&gt;IP_ADDRESS[2]=172.19.149.140&lt;BR /&gt;SUBNET_MASK[2]=255.255.255.128&lt;BR /&gt;INTERFACE_NAME[2]=lan2&lt;BR /&gt;DHCP_ENABLE[2]=0&lt;BR /&gt;BROADCAST_ADDRESS[2]=172.19.149.255&lt;BR /&gt;INTERFACE_STATE[2]=up&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[1]="10.200.64.132"&lt;BR /&gt;ROUTE_GATEWAY[1]="172.19.149.140"&lt;BR /&gt;ROUTE__MASK[1]=255.255.255.255&lt;BR /&gt;ROUTE_COUNT[1]=1&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[2]="10.200.64.132"&lt;BR /&gt;ROUTE_GATEWAY[2]="172.19.149.103"&lt;BR /&gt;ROUTE_MASK[2]=255.255.255.255&lt;BR /&gt;ROUTE_COUNT[2]=1&lt;BR /&gt;&lt;BR /&gt;ROUTE_DESTINATION[3]="10.200.64.132"&lt;BR /&gt;ROUTE_GATEWAY[3]="172.19.149.105"&lt;BR /&gt;ROUTE_MASK[3]=255.255.255.255&lt;BR /&gt;ROUTE_COUNT[3]=1&lt;BR /&gt;&lt;BR /&gt;Any reason I can't successfully add to the routing table ?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Nov 2009 08:03:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520167#M533903</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-11-12T08:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520168#M533904</link>
      <description>can I know  your ip address which you want add the route table,&lt;BR /&gt;&lt;BR /&gt;I have some idea after seeing you netconf file&lt;BR /&gt;&lt;BR /&gt;please provide &lt;IP_ADDRESS&gt; so that i shall give command&lt;BR /&gt;&lt;BR /&gt;so we shall try with "static" than we shall add the entries under the netconf file for permant&lt;BR /&gt;&lt;/IP_ADDRESS&gt;</description>
      <pubDate>Thu, 12 Nov 2009 08:09:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520168#M533904</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-12T08:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520169#M533905</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;10.200.64.132 is IP which I need to add route for permanent route to netconf.&lt;BR /&gt;&lt;BR /&gt;By manually, but still can't reach the IP&lt;BR /&gt;&lt;BR /&gt;route add net 10.200.64.132 netmask 255.255.255.255 172.19.149.140&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Nov 2009 08:13:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520169#M533905</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-11-12T08:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520170#M533906</link>
      <description>&lt;BR /&gt;command shoudl as below&lt;BR /&gt;&lt;BR /&gt;route add net 10.200.64.132 255.255.255.255 172.19.149.140 1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But Below shows you have already add route as per above posted from yours&lt;BR /&gt;=========================================================================&lt;BR /&gt;&lt;BR /&gt;# netstat -rn &lt;BR /&gt;Routing tables &lt;BR /&gt;&lt;BR /&gt;Destination  Gateway  Flags Refs Interface Pmtu &lt;BR /&gt;&lt;BR /&gt;10.200.64.132  172.19.149.140  UH 0 lan2 1500 &lt;BR /&gt;&lt;BR /&gt;127.0.0.0  127.0.0.1 U 0   lo0 0 &lt;BR /&gt;&lt;BR /&gt;default  172.19.149.126  UG 0 lan0 0</description>
      <pubDate>Thu, 12 Nov 2009 08:23:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520170#M533906</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-12T08:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520171#M533907</link>
      <description>route add net 10.200.64.132 255.255.255.255 172.19.149.140 1 --&amp;gt; say "add net 10.200.64.132: gateway 255.255.255.255: Network is unreachable"&lt;BR /&gt;&lt;BR /&gt;AS because, I was using route add net 10.200.64.132 netmask 255.255.255.255 172.19.149.140"&lt;BR /&gt;&lt;BR /&gt;How difference between these 2 ?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Nov 2009 08:53:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520171#M533907</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-11-12T08:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to make a permanent route</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520172#M533908</link>
      <description>&amp;gt;&amp;gt;How difference between these 2 ?&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;difference its counts 1</description>
      <pubDate>Fri, 13 Nov 2009 01:39:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-make-a-permanent-route/m-p/4520172#M533908</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-11-13T01:39:21Z</dc:date>
    </item>
  </channel>
</rss>

