- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Can't telnet or FTP to an Oracle Enterprise Linux ...
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
тАО02-15-2008 12:39 PM
тАО02-15-2008 12:39 PM
I just installed a new Oracle Enterprise Linux 5 server njlxdv22 which is able to telnet to other HPUX servers. But when I try to telnet or FTP to njlxdv22 from my laptop, I got below error messages. How to fix this?
H:\>telnet njlxdv22
Connecting To njlxdv22...Could not open connection to the host, on port 23: Conn
ect failed
H:\>ftp njlxdv22
> ftp: connect :Unknown error number
ftp>
Regards,
Jan Shu
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2008 12:47 PM
тАО02-15-2008 12:47 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2008 12:54 PM
тАО02-15-2008 12:54 PM
Re: Can't telnet or FTP to an Oracle Enterprise Linux 5 server
I will read the link you sent and let you know if it works for my Oracle Ent Linux 5 server. Please wait. Thanks.
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2008 12:58 PM
тАО02-15-2008 12:58 PM
Re: Can't telnet or FTP to an Oracle Enterprise Linux 5 server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-18-2008 02:13 PM
тАО02-18-2008 02:13 PM
Re: Can't telnet or FTP to an Oracle Enterprise Linux 5 server
I just downloaded putty and install it from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html and now I can connect to this Linux server using ssh.
Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-19-2008 11:41 AM
тАО02-19-2008 11:41 AM
Re: Can't telnet or FTP to an Oracle Enterprise Linux 5 server
As for your ftp problem. Check that it installed and running as well.
ps -ef | grep ftp
should show something like
/usr/sbin/vsftpd /etc/vsftpd/vsftp.conf
Other wise follow these steps:
1. Install the vsftp rpm. rpm -ihv vsftp*.rpm.
/etc/xinetd.d/vsftpd. Should look like this:
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/vsftpd
server_args = /etc/vsftpd/vsftpd.conf
nice = 10
per_source = 5
instances = 50
log_on_success += PID HOST DURATION
log_on_failure += HOST
}
3. Add "vsftpd: ALL" to /etc/hosts.allow. Replace "ALL" with your subnet, machine list, or whatever if you don't want everyone to be able to connect. ALL will let every machine connect, but you still need a login and password.
4. Create an /etc/vsftpd/vsftpd.conf file like this:
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
pam_service_name=vsftpd
userlist_enable=YES
listen=NO
tcp_wrappers=YES
5. (optional) - If you want to ftp as root or any other user that is normally restricted, remove them from /etc/vsftpd.ftpusers.
6. (optional) - Do the same for /etc/vsftpd.user_list.
7. Type 'service xinetd restart' and you should be set.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-20-2008 09:13 PM
тАО02-20-2008 09:13 PM
Re: Can't telnet or FTP to an Oracle Enterprise Linux 5 server
You cannot telnet the system unless you open the telnet port.
check /etc/xinetd.d/telnetd or /etc/sysconfig folders for telnet service.
or chkconfig telnet
for enabling FTP, you must start the vsftpd daemon.
you can restrict to ftp login in two files,
/etc/vsftpdusers and /etc/ftp_users file.