- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to kill ftpd and telnetd
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
Discussions
Discussions
Discussions
Forums
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
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-30-2003 03:27 AM
тАО10-30-2003 03:27 AM
How to kill ftpd and telnetd
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 03:30 AM
тАО10-30-2003 03:30 AM
Re: How to kill ftpd and telnetd
inetd -c
to re-read the .conf file.
To see if they're running, just try to telnet/ftp to another server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 03:33 AM
тАО10-30-2003 03:33 AM
Re: How to kill ftpd and telnetd
ps -ef|egrep "telnetd|ftpd". This will show the processes running.
Get the pids and kill
You can also pipe to make a single command.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 03:55 AM
тАО10-30-2003 03:55 AM
Re: How to kill ftpd and telnetd
If you want to stop telnet/ftp completely comment them out in /etc/inetd.conf and then do a inetd -c .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 03:57 AM
тАО10-30-2003 03:57 AM
Re: How to kill ftpd and telnetd
ps -aux | egrep "ftpd|telentd" | awk '{print $2}' | xargs kill -9
Will kill all the processes, but you would want to turn them off in your inetd.conf file from further access.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 06:19 AM
тАО10-30-2003 06:19 AM
Re: How to kill ftpd and telnetd
and then "kill -9 process_id"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 06:28 AM
тАО10-30-2003 06:28 AM
Re: How to kill ftpd and telnetd
As a wimpy alternative, comment the lines in /etc/inetd.conf.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 06:36 AM
тАО10-30-2003 06:36 AM
Re: How to kill ftpd and telnetd
I would cut the ftp and telnet wires in the LAN cable (J/K).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 06:41 AM
тАО10-30-2003 06:41 AM
Re: How to kill ftpd and telnetd
Let me know what the boss says when you submit your cost saving proposal using A. Clay's solid security method.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2003 06:48 AM
тАО10-30-2003 06:48 AM
Re: How to kill ftpd and telnetd
inetd -c will restart the daemon that runs ftp and telnet in case it's needed.
E.