- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: inetd -c
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
12-13-2004 07:36 AM
12-13-2004 07:36 AM
I made changes to inetd.sec and inetd.conf to disable telnet and ftp. Should I just issue inetd -c? I think it has no effect on existing connections. Is inetd -c sufficient? Please clarify.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 07:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 07:39 AM
12-13-2004 07:39 AM
Re: inetd -c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 07:41 AM
12-13-2004 07:41 AM
Re: inetd -c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 09:05 AM
12-13-2004 09:05 AM
Re: inetd -c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 09:16 AM
12-13-2004 09:16 AM
Re: inetd -c
On a UNIX System V Release 4.0 Version 3.0
inetd -c won't work. I looked at the man page there is no -c option. I modified inetd.conf and inetd.sec to disable ftp &telnet. telnet is disabled but ftp is sitll working. How can I disable ftp permanently?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 09:26 AM
12-13-2004 09:26 AM
Re: inetd -c
What release of HP-UX are you trying this on? I *KNOW* that this works on HP-UX 10.20 and higher and it is in the inetd man page. If you are using something different, then there is no guarantee it will work.
If you're not running HP-UX keep in mind that these answers may not work.
Since you don't specify a specific OS, it will be assumed that you are on HP-UX since this is an HP-UX forum.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 09:31 AM
12-13-2004 09:31 AM
Re: inetd -c
Do this:
ps -ef | grep inetd and note the PID of the inetd process.
kill -1 inetd_PID
That's exactly the same thing that an inetd -c does; inetd has a signal handler for SIGHUP (kill -1) so that when it receives this signal, it rereads the configuration file and then reconfigures itself without disturbing existing connections.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 10:00 AM
12-13-2004 10:00 AM
Re: inetd -c
To disable ftp inside the inetd.conf file then you need to do the following
#ftp stream tcp nowait root /usr/sbin/ftpd ftpd
Read this link for more info:
http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V50_HTML/MAN/MAN4/0147____.HTM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 11:13 AM
12-13-2004 11:13 AM
Re: inetd -c
in case you run tru64 5.x then it wil be inetd -h
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 01:17 PM
12-13-2004 01:17 PM
Re: inetd -c
You can refer to the manual for more detail the inetd.
As above idea, you can disable telnet and ftp service.
But if you only rem the telnet and ftp in the inetd.sec and inetd.conf. You still can use rlogin service! You can test with CRT software.
I think the best way is: do not disable these services.
You can set the range of IP address which can access your system with these services by adding this line in the inetd.sec file:
telnet allow
ftp allow
Note that: *ONLY* the IP address was specify on that line *CAN* connect to your system with telnet and ftp services.
In additional, you can also change and disable these services on /etc/services
I have never worked with Tru64 but my idea just for HP-UX .
All the best
Regard,
Jimkery