How to Check if Telnet Is Running on a Server כיצד לבדוק אם Telnet רץ על שרת
Telnet (TELecommunication NETwork) is a unsecured network protocol used on the Internet or local area network (LAN) connections popularly to remotely access a server from client. Telnet (רשת תקשורת) הוא פרוטוקול רשת מאובטח בשימוש באינטרנט או רשת מקומית (LAN) קשרים העממי כדי לגשת מרחוק לשרת מהלקוח. The problem with Telnet is that the session is unencrypted with user name and password transmit across network in plain text, greatly increase security risk. הבעיה עם Telnet היא כי הפגישה היא לא מוצפנת עם שם משתמש וסיסמה לשדר ברשת בטקסט רגיל, מאוד להגדיל את הסיכון הביטחוני.
If you want to identify and check if the Telnet service is running on your server, especially on web server or web host which exposes to worldwide attacks, here's an easy way to perform the verification on Telnet process. אם אתה רוצה לזהות לבדוק אם השירות טלנט פועל בשרת שלך, במיוחד על שרת אינטרנט או מארח האתר אשר חושף את ההתקפות ברחבי העולם, הנה דרך קלה לבצע את תהליך האימות ב Telnet.
The easiest way to check if the Telnet process is running or not on the server is by using ps command that displays the currently running processes. הדרך הקלה ביותר לבדוק אם התהליך Telnet פועל או לא בשרת היא באמצעות הפקודה ps המציגה את התהליכים הפועלים כעת. To check for any running Telnet process, login to the server via SSH (or physically using console, if you can Telnet into the server, obviously the Telnet service is running), and run the following command: כדי לבדוק כל פועל בתהליך Telnet, ההתחברות לשרת דרך SSH (פיזית או באמצעות המסוף, אם אתה יכול Telnet לתוך השרת, ספק השירות פועל Telnet), ולהפעיל את הפקודה הבאה:
ps -aux | grep telnet ps-aux | grep Telnet
If the result returns any other processes other than “grep telnet” line means that some Telnet process is running or session is opened. אם התוצאה מחזירה כל התהליכים אחרות מלבד "Telnet grep" קו אומר כמה התהליך Telnet פועל או מושב נפתח.
Alternatively, scan your server for open port 23, which Telnet normally uses to connect to. לחלופין, לסרוק את השרת שלך פתוח 23 עבור הנמל, אשר Telnet בדרך כלל משתמש כדי להתחבר. If the port 23 is not closed, mean Telnet service may be running. אם יציאת ה 23 אינה סגורה, כלומר שירות Telnet יופעל. To check if port 23 is closed or opened, you need to have nmap installed on server. כדי לבדוק אם פורט 23 סגור או פתח, אתה צריך לעבור Nmap מותקן בשרת. The command to use is: כדי להשתמש בפקודה זו:
nmap -sT -O localhost Nmap-St-localhost O
IMPORTANT : The page is machine translated and provided "as is" without warranty. חשוב: הדף מכונת תירגם מתפרסם "כמות שהוא" ללא אחריות. Machine translation may be difficult to understand. תרגום מכונה יכול להיות קשה להבין. Please refer to נא עיין original English article המאמר המקורי באנגלית whenever possible. בכל הזדמנות אפשרית.
Related Articles מאמרים קשורים
- Install and Enable Telnet Server Service in Windows Vista אפשר להתקין Telnet Server Service ב-Windows Vista
- Disable and Turn Off Telnet in Linux השבת ולכבות Telnet ב-Linux
- Cannot FTP to Web Host or Server running cPanel/WHM לא יכול cPanel FTP כדי אינטרנט או שרת מארח פועל / WHM
- How to Find and Check Number of Connections to a Server איך למצוא בדוק מספר החיבורים בשרת
- How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows אופן הבדיקה לזהות אילו יישומים הוא הקשבה או פתיחת פורט 80 ו 443 ב-Windows
- Enable and Install Telnet Client in Vista הפעל התקן בלקוח Telnet ב-Vista
- How to Check Memory Usage in Linux based Server כיצד לבדוק שימוש בזיכרון של לינוקס מבוסס שרת
- How to Check and Determine Which Edition of Windows Vista is Installed or Running in Used אופן הבדיקה ברר איזו מהדורה של Windows Vista מותקנת או משוער ב משומשים
- Monitor and Check Web Site or Server Uptime and Availability for Free לנטר בדוק אתר אינטרנט או שרת Uptime וזמינות עבור חינם
- Telnet for Windows 7 and Windows Vista Telnet 7 עבור Windows ו-Windows Vista










































August 19th, 2007 22:19 19 אוגוסט 2007 22:19
[...] some web hosting providers has Telnet disabled by default. [...] כמה אינטרנט ספקי האחסון יש Telnet מושבתת כברירת מחדל. Webmasters or system administrators can verify if the Telnet service is turned off. מנהלי אתרים או מנהלי מערכת יכולים לבדוק אם השירות טלנט מבוטלת. If it's still running, the following guide will provide steps to disable and turn off Telnet [...] אם זה עדיין רץ, המדריך הבא יספק את הפעולות הבאות כדי להשבית ולכבות Telnet [...]