- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP Wrapper and the 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
10-08-2002 06:49 AM
10-08-2002 06:49 AM
TCP Wrapper and the banner
I am installing TCP Wrapper on one hpux 11.0 box and have one question here:
I can configure the banner within the two files, /etc/hosts.allow and /etc/hosts.deny. However, I can see both the banner I set and the default one, which is HP-UX unixh66 B.11.00 U 9000/800 (td). This is what I don't want to see.
I know I can add "-a /etc/banner" in the /etc/inetd.conf WITHOUT TCP Wrapper. However, since the tcpd has replaced the original telnetd, it's not possible to use the option "-a".
Any idea to change the defaul login banner with TCP Wrapper installed?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 06:53 AM
10-08-2002 06:53 AM
Re: TCP Wrapper and the banner
I am also basing this on the Tcpwrapper code from ftp://porcupine.org/pub/security/index.html
Ted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 06:57 AM
10-08-2002 06:57 AM
Re: TCP Wrapper and the banner
telnet -b /etc/
we use
telnet -b /etc/issue
Ted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 06:58 AM
10-08-2002 06:58 AM
Re: TCP Wrapper and the banner
go ahead and create /etc/issue and put the message you want in it. Could even be something null. Modify the inetd.conf file so that the call for the tcp_wrapped telnetd does issue the banner call. I think the tcp_wrapper from inetd.conf may still run the default banner for telnet unless you take steps to squash it.
Ted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2002 07:11 AM
10-08-2002 07:11 AM
Re: TCP Wrapper and the banner
Here is the line of telnet service without TCPWrapper:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/motd
Here is the one with TCPWrapper:
telnet stream tcp nowait root /usr/lbin/tcpd telnetd -b /etc/motd
Oh...I got it....it works!
Crsytal