<?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: default geteway failed in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835862#M581464</link>
    <description>i'm not sure that one can set the ip_ire_gw_probe_interval to a value of zero, however, one can set ip_ire_gw_probe to a value of zero to disable dead gateway detection.&lt;BR /&gt;&lt;BR /&gt;the other option is to get the router(s) supporting the virtual IP address to respond to the ICMP echo requests :)&lt;BR /&gt;</description>
    <pubDate>Thu, 31 Oct 2002 18:23:32 GMT</pubDate>
    <dc:creator>rick jones</dc:creator>
    <dc:date>2002-10-31T18:23:32Z</dc:date>
    <item>
      <title>default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835858#M581460</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I have a L2000 server with the OS HP-UX 11.0. Unfortunately the routing via default gateway with a virtual ip address is failing. Only physical IP addresses are working. If I enter a virtual IP as default gateway, a telnet session works only once. But if I try to open a session again the rout to the server is not available. &lt;BR /&gt;Please, can anybody help me?&lt;BR /&gt;Thank you very much.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Martin&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Oct 2002 10:32:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835858#M581460</guid>
      <dc:creator>Steiner</dc:creator>
      <dc:date>2002-10-30T10:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835859#M581461</link>
      <description>Hi Martin, &lt;BR /&gt;&lt;BR /&gt;Eh, why do you not want to use a real gateway IPadres? &lt;BR /&gt;Maybe you can use the IP of the machine itself as a gatewayIP. This works on another OS, but have not tried it on HPUX.&lt;BR /&gt;&lt;BR /&gt;Goodluck&lt;BR /&gt;Donald</description>
      <pubDate>Wed, 30 Oct 2002 10:40:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835859#M581461</guid>
      <dc:creator>Donald Kok</dc:creator>
      <dc:date>2002-10-30T10:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835860#M581462</link>
      <description>Is the network with this virtual IP acessible directly?&lt;BR /&gt;Check your routing with: netstat -rn&lt;BR /&gt;&lt;BR /&gt;You should have something like:&lt;BR /&gt;&lt;BR /&gt;127.0.0.1             127.0.0.1          UH       0     140508  lo0        4136&lt;BR /&gt;172.23.1.67           172.23.1.67        UH       0    2872817  lan0       4136&lt;BR /&gt;172.23.1.0            172.23.1.67        U        2          0  lan0       1500&lt;BR /&gt;127.0.0.0             127.0.0.1          U        0          0  lo0        4136&lt;BR /&gt;default               172.23.1.254       UG       0          0  lan0       1500&lt;BR /&gt;&lt;BR /&gt;If the network is not accessible directly, you're unable to route to the gateway.&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;&lt;BR /&gt;Adam</description>
      <pubDate>Wed, 30 Oct 2002 11:07:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835860#M581462</guid>
      <dc:creator>Adam J Markiewicz</dc:creator>
      <dc:date>2002-10-30T11:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835861#M581463</link>
      <description>Also with 11.0 dead gateway detection is on by default.  If you can't ping the gateway HPUX 11.0 will think it is dead and refuse to use it.  It will work for a few minutes after a reboot but then stop.&lt;BR /&gt;&lt;BR /&gt;ip_ire_gw_probe_interval:&lt;BR /&gt;&lt;BR /&gt;    Controls the probe interval for Dead Gateway Detection.&lt;BR /&gt;    IP periodically probes active and dead gateways.&lt;BR /&gt;    ip_ire_gw_probe_interval controls the frequency of probing.&lt;BR /&gt;    With retries, the maximum time to detect a dead gateway is&lt;BR /&gt;    ip_ire_gw_probe_interval + 10000 milliseconds. Maximum time&lt;BR /&gt;    to detect that a dead gateway has come back to life is&lt;BR /&gt;    ip_ire_gw_probe_interval.  [15000,- ]&lt;BR /&gt;    Default: 180000 (3 minutes) &lt;BR /&gt;&lt;BR /&gt;Set it to 0 to make it stop:&lt;BR /&gt;&lt;BR /&gt;ndd /dev/ip ip_ire_gw_probe_interval 0&lt;BR /&gt;&lt;BR /&gt;then if that fixes your problem add the setting to /etc/rc.config.d/nddconf&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[0]=ip&lt;BR /&gt;NDD_NAME[0]=ip_ire_gw_probe_interval&lt;BR /&gt;NDD_VALUE[0]=0&lt;BR /&gt;&lt;BR /&gt;so that it will stay after a reboot.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Wed, 30 Oct 2002 18:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835861#M581463</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-10-30T18:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835862#M581464</link>
      <description>i'm not sure that one can set the ip_ire_gw_probe_interval to a value of zero, however, one can set ip_ire_gw_probe to a value of zero to disable dead gateway detection.&lt;BR /&gt;&lt;BR /&gt;the other option is to get the router(s) supporting the virtual IP address to respond to the ICMP echo requests :)&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Oct 2002 18:23:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835862#M581464</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2002-10-31T18:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835863#M581465</link>
      <description>Rick,&lt;BR /&gt;&lt;BR /&gt;You are right, of course, about ip_ire_gw_probe being the correct parameter.  I didn't remember exactly so logged on to my local hpux 11.0 and asked it:&lt;BR /&gt;&lt;BR /&gt;ndd -h |gw_probe&lt;BR /&gt;&lt;BR /&gt;and it only came up with the _interval parameter so I assumed that was the correct one.  Should have realized that the range statement at the bottom said you couldn't go below 15000.&lt;BR /&gt;&lt;BR /&gt;For some reason (guess we are missing a patch or three) the 11.0 that I have a login on does not offer the correct option.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Thu, 31 Oct 2002 19:13:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835863#M581465</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-10-31T19:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: default geteway failed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835864#M581466</link>
      <description>dont feel bade, the ip_ire_gw_probe does not appear in ndd -h output on my more or les current 11.0 system either :)&lt;BR /&gt;&lt;BR /&gt;ndd -h does not completely lift the curtain on things in ndd. ndd /dev/&lt;FOO&gt; ? (as described in the ndd manpage so I'm not giving away a secret :) will show everything, but give no help&lt;/FOO&gt;</description>
      <pubDate>Thu, 31 Oct 2002 19:26:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/default-geteway-failed/m-p/2835864#M581466</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2002-10-31T19:26:12Z</dc:date>
    </item>
  </channel>
</rss>

