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
09-04-2006 04:13 AM
09-04-2006 04:13 AM
banner
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2006 04:22 AM
09-04-2006 04:22 AM
Re: banner
Are you talking about the message of the day?
If you you can do it editing the /etc/motd file...
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2006 04:25 AM
09-04-2006 04:25 AM
Re: banner
Do you mean when a 'telnet' session is established? If so, modify '/etc/inetd.conf' to be:
# telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/motd
...where '/etc/motd' contains the message (banner) you want displayed.
Remember to re-read the 'inetd.conf' file after performing the modification:
# inetd -c
If you would like to do something similar for 'ftp' sessions, modify '/etc/ftpd/ftpaccess' and specify:
banner /etc/motd
For more details, see:
http://www.docs.hp.com/en/B2355-60127/ftpaccess.4.html
...and/or some examples in:
/usr/newconfig/etc/ftpd/examples/ftpaccess
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2006 06:49 AM
09-04-2006 06:49 AM
Re: banner
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
OR
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/motd
Take a look at this doc for details:
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000080081112
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 07:45 AM
09-07-2006 07:45 AM
Re: banner
If you wanted to display the banner in a script it might look like this:
############################################
#
# Quick Script to make the
# Add a Banner to a Dispaly
#
#
# Writen by Natalie Schcuhard
# natalie@schuchard.us
# Sept 7th 2006
#
############################################
echo "Input Banner to be displayed or in a file?"
read newBanner
banner $newBanner
echo "`banner $newBanner`"
echo "Display as banner: `banner $newBanner' " > /tmp/outputfile
I hope this helps.
Regards
Nate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 09:07 AM
09-07-2006 09:07 AM
Re: banner
I am not sure where you get the banner.
1. If you want to login screen to be displayed as banner edit /etc/issue and enter the content.
eg: login screen should show ur companyname.
#banner "welcome to xyz login">/etc/issue
2. If you want banner while login through telnet edit the content of /etc/motd file.
Thanks and regards
V.Manoharan