- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP port 720
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
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
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
07-06-2004 08:46 PM
07-06-2004 08:46 PM
TCP port 720
I'm trying to find which process keeps my tcp port 720 open on my Hp rp8400 - HP UX 11.11 box.
Lsof doen't helped me, no process listed on its output...really amazing
tcp 0 0 X.X.X.X.720 Y.Y.Y:Y.4036 ESTABLISHED
tcp 0 0 *.720 *.* LISTEN
connection was established from my Windows box with a telnet on 720 port.
lsof -i:720 give me no answer.
Any hint?
Thanks a lot
Antonello
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2004 08:56 PM
07-06-2004 08:56 PM
Re: TCP port 720
telnet localhost 720 ... and then press return key a couple of times.
This may give a clue as to what's listening.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2004 08:59 PM
07-06-2004 08:59 PM
Re: TCP port 720
blank screen, absolutely blank.....nor character neither output
Antonello
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2004 10:26 PM
07-06-2004 10:26 PM
Re: TCP port 720
You can use the netstat -na | grep 720 to get the service details. You may see the foreign address on the net status or lsof details as like Y.Y.Y.Y.
Get the who -Ru | grep Y.Y.Y.Y and find it's termail type. Analyse the process which are running using ps -aelf | grep -v grep | grep 'tty type' It may give little informations.
Is there any service running on inetd.conf to support the queries on 720 port. Try to use the inetd with -l option to get the debug informations of service,if your 720 service is running. It will give some entries on syslog.log file.
if you do telnet localhost 720,it will give the error messages ( unable to connected ) or connected messages. Your previous response is varied from that?
you can use tusc to trace the process and it's behaviour.
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2004 10:36 PM
07-06-2004 10:36 PM
Re: TCP port 720
looking at netstat -a ouput you will able to trace the IP address of the system who is using the port 720.
Then
# who -R | grep
This will give you the tty whose this IP address is
Then
# ps -t
This will list the processes running on that tty.
May be you will be able to trace out which process has opened that port.
I hope that should help.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2004 10:47 PM
07-06-2004 10:47 PM
Re: TCP port 720
I try to simulate a connection to 720 tcp port from my Windows box with telnet
the only thing i see is that tcp port 720 is LISTENING ...
Antonello
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2004 12:23 AM
07-07-2004 12:23 AM
Re: TCP port 720
According to iana.org ports 713-728 are unassigned so it could be *anything*.
Have you checked your /etc/services file to see if anything's been assigned to that port locally.
If it's not in inetd.conf then it has to be a daemon or such started up at boot time.
Check the /etc/inittab file as well as all /sbin/init.d scripts.
It has to be started up *somewhere*.
Good hunting,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2004 01:04 AM
07-07-2004 01:04 AM
Re: TCP port 720
someone told me that could ypbind , but the service is not running on our server.....
nothing of nothing looking at the /sbin/rc2.d
A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2004 01:06 AM
07-07-2004 01:06 AM
Re: TCP port 720
http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/binaries/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2004 01:11 AM
07-07-2004 01:11 AM
Re: TCP port 720
BTW - that lsof command should be:
lsof -i tcp:720
See if that gives you a better clue.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2004 02:57 AM
07-08-2004 02:57 AM
Re: TCP port 720
"rpcinfo -p " gave me the answer
Is the scopeux program used by Measureware that maps the service on a dynamic port.
In fact it became 709 yesterday, no more 720.
805306352 1 tcp 709
and i found from service list inside http://www.geocities.co.jp/SiliconValley/1667/PortScan.pdf:
"805306352 # HP measureware scopeUX "
when i run glance or gpm i see local connections on the bound port ( 720, 709, etc.)
Thansk anyway to all of you that replied.
Antonello