- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Open telnet, ftp
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-14-2005 06:39 PM
12-14-2005 06:39 PM
Open telnet, ftp
can you tell me the way that the above services are opened?
ver: Linux ES.
thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 07:03 PM
12-14-2005 07:03 PM
Re: Open telnet, ftp
I'm not sure what are you asking for.
But if you want to enable telnet, ftp on server
you can perform this by running command:
ntsysv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 07:08 PM
12-14-2005 07:08 PM
Re: Open telnet, ftp
Hi,
#netstat -an
will give you the list of services opened and the associated ports.
With Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 07:42 PM
12-14-2005 07:42 PM
Re: Open telnet, ftp
# netstat -na | grep -E '23|25'
# telnet localhost
# telnet localhost ftp
has to work without getting connection refused error.
-Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2005 10:53 PM
12-14-2005 10:53 PM
Re: Open telnet, ftp
Install the vsftpd and telnet-server packages. If not already installed, use:
redhat-config-packages
or
system-config-packages
Then enable the services using:
chkconfig vsftpd on
service vsftpd start
chkconfig telnet on
service xinetd reload
REMEMBER: Telnet should not be used any more, it's insecure and it's replaced by ssh. SSH is installed and enabled by default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2005 07:01 PM
12-16-2005 07:01 PM
Re: Open telnet, ftp
You can test it with following commands:
rpm -qa | grep vsftp
rpm -qa "grep telnet
After that, for starting FTP excute :
/etc/init.d/vsftpd start
for telnet, first you have to enable it in xinetd. for this issue edit /etc/xinetd.d/telnet and change "disable" option from "yes" to "no"
finally you have to restart xinetd:
/etc/init.d/xinetd restart
Alireza
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 03:36 AM
12-20-2005 03:36 AM
Re: Open telnet, ftp
After installing the rpm packages(vsftpd and telnetd) try the following commands
#ntsysv
Slect the check box of vsftpd..
#service vsftpd start
For Telnet..
#vi /etc/xinetd.d/telnet
Make disable=no
save and comeout...
#service xinetd restart
it should solve ur problem..
cheers
indrajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 05:02 AM
12-20-2005 05:02 AM
Re: Open telnet, ftp
If you want to see whether the above services are running on the machine give the foll command:
#nmap localhost
If you want to enable these services do the foll:
for telnet:
use ntsysv and select telnet and then give
#service inetd restart
or for ftp
edit /etc/vsftpd/vsftpd.conf and
service vsftpd start
-----
Cheers
Vipul