June 5, 2015

How to enable telnet server on Centos 5

TELNET (TELetype NETwork) is a network protocol used on the Internet or local area network LAN connections.

Telnetd is normally invoked by the internet server inetd or xinetd for requests to connect to the telnet port as indicated by the /etc/services file. Usaually telnet listen on port TCP port 23.

Telnet in is insecure protocol and it is recommended that you use ssh server. But some time you really need telnet then first install telnet server as according to version of Linux distribution.

Telnet server installation:

[root@lecuong ~]# yum install telnet-server

Configure telnet server: 

The configuration file for telnet is /etc/xinetd.d/telnet. To enable telnet server you need to open this file and make sure disable = no read asdisable = yes.

[root@lecuong ~]# vi /etc/xinetd.d/telnet

Alternately:

[root@lecuong ~]# chkconfig telnet on

To start telnet server type command:

[root@lecuong ~]# /etc/init.d/xinetd restart


Finish !!

Related Posts:

  • Hướng dẫn đổi port mặc định của DirectAdmin và SSH1. Giới thiệu Server hay VPS nếu có sử dụng control DirectAdmin thì người quản trị không thể tránh khỏi việc thường xuyên nhận được email thông báo có tiêu đề dạng "Brute-Force Attack detected in service log from IP(s) 80… Read More
  • How to enable telnet server on Centos 5TELNET (TELetype NETwork) is a network protocol used on the Internet or local area network LAN connections. Telnetd is normally invoked by the internet server inetd or xinetd for requests to connect to the telnet port as ind… Read More
  • Dấu hiệu bị hack, lừa đảo, cách phòng tránh & xử lý Dấu hiệu nhận biết khi điện thoại bị hack chiếm quyền kiểm soát: Điện thoại di động bị cài đặt những ứng dụng giả mạo sẽ xuất hiện nhiều dấu hiệu đáng ngờ, như: máy mau hết pin và chạy chậm, xuất hiện ứng d… Read More
  • Các bước thay đổi SSH Port của server Port 22 mặc định được sử dụng để kết nối SSH đến Linux Server, do đó sẽ có nhiều người lợi dụng điều này để tìm cách tấn công tài khoản root của VPS. Để tăng thêm tính bảo mật cho VPS, các bạn nên thay đổi port đăng nhập SS… Read More
  • Installing Telnet In CentOS/RHEL/Scientific Linux 6 & 7 Disclaimer: Before installing and using Telnet, keep the following in mind. Using Telnet in public network(WAN) is very very bad idea. It transmits login data in the clear format. Everything will be sent in plain text. If … Read More

0 comments:

Post a Comment