HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - Linux
 - >
 - Re: Telnet on Debian 3.0
 
Operating System - Linux
        1840211
        Members
    
    
        2854
        Online
    
    
        110162
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              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
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            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
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- 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
 
05-17-2003 03:53 AM
05-17-2003 03:53 AM
			
				
					
					
						Hello,
What is the utility from which we can enable the telnet and other networking stuffs...?
How to go about in installing extra packages after the basic installation...?
Because eventhough the system is on the network and able to ping.. but not able to telnet or ftp from other server...
The version is Debian 3.0.
Please suggest..
Thanks & Regards
Bindumadhava.
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
What is the utility from which we can enable the telnet and other networking stuffs...?
How to go about in installing extra packages after the basic installation...?
Because eventhough the system is on the network and able to ping.. but not able to telnet or ftp from other server...
The version is Debian 3.0.
Please suggest..
Thanks & Regards
Bindumadhava.
Solved! Go to Solution.
		2 REPLIES 2
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
05-17-2003 06:30 AM
05-17-2003 06:30 AM
Solution
			
				
					
					
						Hi,
for security reason, the in.telnetd is not installed with the base system on debain woody.
You can install it with "apt-get install telnetd".
And you may take a look at /etc/securetty to allow root logins over the net.
Also you can install a ftp server.
On debain you have by default three programs to maintain your installed software packages:
dselect : a curses based frontend to the other programs
dpkg : maintain software, like installing packages, purging , updateing etc.
apt-get: to install software directly from the media or the net and to maintain it
If you need a specific program/tool you can look at http://search.debian.org to find the appropriate package for it.
Heiner
		
		
	
	
	
for security reason, the in.telnetd is not installed with the base system on debain woody.
You can install it with "apt-get install telnetd".
And you may take a look at /etc/securetty to allow root logins over the net.
Also you can install a ftp server.
On debain you have by default three programs to maintain your installed software packages:
dselect : a curses based frontend to the other programs
dpkg : maintain software, like installing packages, purging , updateing etc.
apt-get: to install software directly from the media or the net and to maintain it
If you need a specific program/tool you can look at http://search.debian.org to find the appropriate package for it.
Heiner
	if this makes any sense to you, you have a BIG problem
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
05-18-2003 11:19 AM
05-18-2003 11:19 AM
			
				
					
						
							Re: Telnet on Debian 3.0
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						If you installed the telnet server at all, here are the steps to activate it.
There is a directory(RH, I admit) called
/etc/xinetd.d
There should be a statement indicating the directory in your release in the file /etc/xinetd.conf or /etc/inetd.conf
It will say something like
include /etc/xinetd.d
cd there.
There should be a file called telent
Here is what MINE says.
[root@jerusalem xinetd.d]# more telnet
# default: on
# description: The telnet server serves telnet sessions; it uses # unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
Note disable = no, that means its on. Quite intuitive don't you think? The future of Unix.
If disable is set to yes, change it to no and then restart the inetd deamon
xinetd -c or
service xinetd restart
This could solve your issue. If so throw a point or two my way.
have a pleasant weekend.
SEP
					
				
			
			
				
		
		
	
	
	
There is a directory(RH, I admit) called
/etc/xinetd.d
There should be a statement indicating the directory in your release in the file /etc/xinetd.conf or /etc/inetd.conf
It will say something like
include /etc/xinetd.d
cd there.
There should be a file called telent
Here is what MINE says.
[root@jerusalem xinetd.d]# more telnet
# default: on
# description: The telnet server serves telnet sessions; it uses # unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
Note disable = no, that means its on. Quite intuitive don't you think? The future of Unix.
If disable is set to yes, change it to no and then restart the inetd deamon
xinetd -c or
service xinetd restart
This could solve your issue. If so throw a point or two my way.
have a pleasant weekend.
SEP
	Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
			
			
				
			
			
			
			
			
			
		Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP