- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: telnet/tcp connection reporting
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
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
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
тАО10-09-2006 12:45 PM
тАО10-09-2006 12:45 PM
I have many mesgs in syslog as follows....
Oct 10 05:55:51 saturn inetd[16520]: telnet/tcp: Connection from unknown (aaa.b.
ccc.dd) at Tue Oct 10 05:55:51 2006 I am wondering what they really mean. I have added into /etc/profile some script so that I can see in the log the logname and ip of where the users are logging in from, and some of the telnet/tcp connection messages do match up to these user login messages taht I get. But, there are many of these telnet/tcp messages that go on forever. Some I have noticed occur on the hour every hour...these are actual rf devices that I believe are not powered off, and so even if a user is not logged on, there is still some sort of communication going on - basically polling the system waiting for a user to log them on. Is this what these telnet/tcp messages really mean?
Hope someone understands my words here and can help me. thanks, Maria
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 01:18 PM
тАО10-09-2006 01:18 PM
Re: telnet/tcp connection reporting
inetd -l
this enables connection logging and should at least provide an ip address.
/etc/inetd.conf can be configured to log telnet all the time with the -l parameter inside.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 01:49 PM
тАО10-09-2006 01:49 PM
Re: telnet/tcp connection reporting
Now as far as i know the RF scanners, even if they are left on do not poll until and unless some activity or request is made from the device side. Usually the way the RF scanners are configured is that that they talk to a particular port defined in /etc/services which then triggers a program defined in /etc/inetd.conf file and its a TCP/IP socket extablished until the RF scanners terminates it and from there the application talks to the RF scanner on that TCP/IP socket until the connection is droped or terminated from either side.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 02:40 PM
тАО10-09-2006 02:40 PM
Re: telnet/tcp connection reporting
Oct 10 05:55:51 saturn inetd[16520]: telnet/tcp: Connection from unknown (aaa.b.
ccc.dd) at Tue Oct 10 05:55:51 2006
What I am asking is - What is this message really telling me?? how do trouble shoot it? Is it really saying that ip address aaa.b.ccc.dd is trying to make a connection to the unix server via telnet/tcp service. What determines how often these messages appear in the log?
regards
Maria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 07:12 PM
тАО10-09-2006 07:12 PM
Re: telnet/tcp connection reporting
grep "Connection from unknown (aaa.b.ccc.dd)" /var/adm/syslog/syslog.log
it will list all records concerning aaa.b.ccc.dd
grep "Connection from unknown (aaa.b.ccc.dd)" /var/adm/syslog/syslog.log|wc -l
will show you hoe many records in syslog.log
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 07:17 PM
тАО10-09-2006 07:17 PM
Re: telnet/tcp connection reporting
often this messages are from port scanners who will try to exploit some weak services - for example telnet. If you don't use this better disable telnet (from /etc/inetd.conf) or switch to more secure - ssh.
cheers,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-09-2006 10:22 PM
тАО10-09-2006 10:22 PM
SolutionIt is telling you that a RF scanner with that IP address is trying to make a connection on that port on this server
- how do trouble shoot it?
You can run netstat -an to see all the RF scanner (even the one with aaa.b.ccc.dd) connected with TCP connection on the defined port.
- What determines how often these messages appear in the log?
These messages will appear everytime the scanner connects and disconnects from the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-15-2006 10:45 AM
тАО10-15-2006 10:45 AM
Re: telnet/tcp connection reporting
thanks. Maria