<?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: route problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113850#M446545</link>
    <description>Problem solved, thanks all of your reply. Need to specify the netmask to delete that perticular entry.&lt;BR /&gt;&lt;BR /&gt; # route delete 192.168.83.0 netmask 255.255.252.0 192.168.215.1&lt;BR /&gt;delete net 192.168.83.0: gateway 192.168.215.1&lt;BR /&gt;</description>
    <pubDate>Fri, 13 Jun 2008 14:48:10 GMT</pubDate>
    <dc:creator>Jeff.Z</dc:creator>
    <dc:date>2008-06-13T14:48:10Z</dc:date>
    <item>
      <title>route problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113847#M446542</link>
      <description>Just want to delete a route and add it again from the routing table and sth wired happen.&lt;BR /&gt;&lt;BR /&gt;route delete shows "no such route", netstat -rn shows that it's not there, but having problem when try to add it again.&lt;BR /&gt;&lt;BR /&gt;Any suggestions on this? thanks.&lt;BR /&gt;&lt;BR /&gt;# route delete 192.168.83.0 192.168.215.1&lt;BR /&gt;delete net 192.168.83.0: gateway 192.168.215.1: no such route&lt;BR /&gt;&lt;BR /&gt;# 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;10.3.43.10 10.3.43.10 UH 0 lan900 4136&lt;BR /&gt;192.168.215.5 192.168.215.5 UH 0 lan1 4136&lt;BR /&gt;10.3.43.0 10.3.43.10 U 2 lan900 1500&lt;BR /&gt;192.168.215.0 192.168.215.5 U 2 lan1 1500&lt;BR /&gt;192.168.80.0 192.168.215.1 UG 0 lan1 1500&lt;BR /&gt;192.168.81.0 192.168.215.1 UG 0 lan1 1500&lt;BR /&gt;192.168.82.0 192.168.215.1 UG 0 lan1 1500&lt;BR /&gt;192.168.84.0 192.168.215.1 UG 0 lan1 1500&lt;BR /&gt;127.0.0.0 127.0.0.1 U 0 lo0 4136&lt;BR /&gt;192.168.80.0 192.168.215.1 UG 0 lan1 1500&lt;BR /&gt;default 10.3.43.1 UG 0 lan900 1500&lt;BR /&gt;&lt;BR /&gt;# route add net 192.168.83.0 netmask 255.255.252.0 192.168.215.1 &amp;gt;&lt;BR /&gt;add net 192.168.83.0: gateway 192.168.215.1: entry in use&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;JEff</description>
      <pubDate>Fri, 13 Jun 2008 14:03:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113847#M446542</guid>
      <dc:creator>Jeff.Z</dc:creator>
      <dc:date>2008-06-13T14:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: route problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113848#M446543</link>
      <description>Shalom&lt;BR /&gt;&lt;BR /&gt;Looks like you are trying to delete a route that is not on the routing table&lt;BR /&gt;&lt;BR /&gt;192.168.83 ? I don't see it.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 13 Jun 2008 14:16:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113848#M446543</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-06-13T14:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: route problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113849#M446544</link>
      <description>When adding a route, you'll usually have to specify the route "count".&lt;BR /&gt;&lt;BR /&gt;route add net 192.168.83.0 netmask 255.255.252.0 192.168.215.1 1&lt;BR /&gt;&lt;BR /&gt;Note the extra "1" at the end of the command line. It tells HP-UX the gateway is a remote host, not a LAN interface on the local host.&lt;BR /&gt;&lt;BR /&gt;The need to specify a route count is probably a historical artifact: current versions of HP-UX automatically create a local route for any LAN interface and IP alias, so any explicit routes are normally remote hosts. However, the current behaviour is what numerous HP-UX applications and sysadmins expect, so it has not been changed so far.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Fri, 13 Jun 2008 14:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113849#M446544</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-06-13T14:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: route problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113850#M446545</link>
      <description>Problem solved, thanks all of your reply. Need to specify the netmask to delete that perticular entry.&lt;BR /&gt;&lt;BR /&gt; # route delete 192.168.83.0 netmask 255.255.252.0 192.168.215.1&lt;BR /&gt;delete net 192.168.83.0: gateway 192.168.215.1&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jun 2008 14:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/route-problem/m-p/5113850#M446545</guid>
      <dc:creator>Jeff.Z</dc:creator>
      <dc:date>2008-06-13T14:48:10Z</dc:date>
    </item>
  </channel>
</rss>

