- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Warning Message Before Logon
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:23 AM
06-22-2000 11:23 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:26 AM
06-22-2000 11:26 AM
Re: Warning Message Before Logon
for telnet connections you need to change inetd.conf and add a banner file for the telnetd process :-
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b/etc/issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:29 AM
06-22-2000 11:29 AM
Re: Warning Message Before Logon
vi /etc/issues and put your message.
regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:35 AM
06-22-2000 11:35 AM
SolutionBut for a Pre Login Message you can change the telnetd startup to include the file of your choice for you own greeting. Here's an excerpt from the telnetd man page:
To override the standard telnetd login banner, specify a file containing a custom banner with the -b bannerfile option. For example, to use /etc/issue as the login banner, have inetd start telnetd with the following lines in /etc/inetd.conf ( provides line continuation):
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b/etc/issue
If bannerfile is not specified, telnetd does not print a login banner.
Hope that helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:36 AM
06-22-2000 11:36 AM
Re: Warning Message Before Logon
inetd -c
this will cause inetd to re-read the config file and accept the change you have made.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2000 11:45 AM
06-22-2000 11:45 AM
Re: Warning Message Before Logon
My mistake is /etc/issues instead of /etc/issue.
Then inetd -c
cheers!