<?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: Warning msg in telnet in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761764#M72629</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just put something like this in your /etc/issue to keep it simple without losing the objective:&lt;BR /&gt;&lt;BR /&gt;By proceeding with the login, you are agreeing to the terms and conditions as stipulated ... and so forth. If you do not agree to these terms and conditions, please do not login.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
    <pubDate>Thu, 11 Jul 2002 09:14:04 GMT</pubDate>
    <dc:creator>Steven Sim Kok Leong</dc:creator>
    <dc:date>2002-07-11T09:14:04Z</dc:date>
    <item>
      <title>Warning msg in telnet</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761763#M72628</link>
      <description>hi, &lt;BR /&gt;can any one help me in giving a waring msg , with a confirmation do u agree or not / if yes give the prompt to work / if no logout. when doing a telnet or login into the system.&lt;BR /&gt;&lt;BR /&gt;tnx</description>
      <pubDate>Thu, 11 Jul 2002 09:02:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761763#M72628</guid>
      <dc:creator>senthil_3</dc:creator>
      <dc:date>2002-07-11T09:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Warning msg in telnet</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761764#M72629</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just put something like this in your /etc/issue to keep it simple without losing the objective:&lt;BR /&gt;&lt;BR /&gt;By proceeding with the login, you are agreeing to the terms and conditions as stipulated ... and so forth. If you do not agree to these terms and conditions, please do not login.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 11 Jul 2002 09:14:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761764#M72629</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-07-11T09:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Warning msg in telnet</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761765#M72630</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;I agree with Steven, but, you will need to do one more thing.&lt;BR /&gt;&lt;BR /&gt;To override the standard telnetd login banner, specify a file containing a custom banner with the '-b bannerfile' option. Thus, to use /etc/issue, modify '/etc/inetd.conf' to look like: &lt;BR /&gt;&lt;BR /&gt;telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue &lt;BR /&gt;&lt;BR /&gt;Remember to retart 'inetd' afterwards:&lt;BR /&gt;&lt;BR /&gt;# /usr/sbin/inetd -c&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jul 2002 09:24:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761765#M72630</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-07-11T09:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Warning msg in telnet</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761766#M72631</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you could add some code in /etc/profile ie.:&lt;BR /&gt;&lt;BR /&gt;echo "........."&lt;BR /&gt;echo "........."&lt;BR /&gt;echo "Do you agree (y/n) [n] ? \c"&lt;BR /&gt;read answer&lt;BR /&gt;if [ "$answer" != "y" ]&lt;BR /&gt;then&lt;BR /&gt;  echo "Logout"&lt;BR /&gt;  exit 0&lt;BR /&gt;fi&lt;BR /&gt;...&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Thu, 11 Jul 2002 09:31:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761766#M72631</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2002-07-11T09:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Warning msg in telnet</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761767#M72632</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Just to add on, if you are intending to display a warning message prompt in your system profile after logging on, you should also modify /etc/csh.login in addition to /etc/profile. This is because if the login shell is csh, then /etc/csh.login is used instead of /etc/profile.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Thu, 11 Jul 2002 12:12:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/warning-msg-in-telnet/m-p/2761767#M72632</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-07-11T12:12:25Z</dc:date>
    </item>
  </channel>
</rss>

