- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: prelogin banner
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
11-30-2001 08:58 AM
11-30-2001 08:58 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2001 09:02 AM
11-30-2001 09:02 AM
Re: prelogin banner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2001 09:02 AM
11-30-2001 09:02 AM
Solutiontelnet stream tcp nowait root /usr/lbin/telnetd telnetd
and change to:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
Then put whatever you want to display in /etc/issue
Then force inetd to re-read its config file:
inetd -c
You can do the same with rlogin if you like, this:
login stream tcp nowait root /usr/lbin/rlogind rlogind
becomes:
login stream tcp nowait root /usr/lbin/rlogind rlogind -B /etc/issue
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2001 09:05 AM
11-30-2001 09:05 AM
Re: prelogin banner
vi /etc/inetd.conf and locate the telnetd entry. You then append '-b filename' to the entry.
A very common one is:
telnet -b /etc/issue
/etc/issue is the a textfile containing what ever message you like.
To make these changes 'take'; you need to do an inetd -c to force a reload on the inetd.conf file.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2001 09:08 AM
11-30-2001 09:08 AM
Re: prelogin banner
1. Console login.
2. Telnet login.
Console login looks for /etc/issue. telnetd is to be told to read a file with -b option. So, the common thing is to change the banner in /etc/issue for the console login and update inetd.conf for telnetd to spawn with /etc/issue.
#vi /etc/issue
(add your banner)
#vi /etc/inetd.conf
(replace telnetd at the end with telnetd -b)
#inetd -c
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2001 09:11 AM
11-30-2001 09:11 AM
Re: prelogin banner
I can't wait to add a message to my systems too.
-Tim