Another ? on sockets/ports


 
Thread Tools Search this Thread
Operating Systems Solaris Another ? on sockets/ports
# 1  
Old 05-07-2006
Another ? on sockets/ports

Ok for clarification if I look at a netstat -a while an active
telnet session is taking place. I see two lines of telnet info
under the IPv4 heading. Whats the 2366 part of the remote
ip address?

TCP: IPv4
Local Address Remote Address Swind Send-Q Rwind Recv-Q State
*.telnet *.* 0 0 49152 0 LISTEN


sol10n.telnet 192.168.60.1.2366 64115 0 49640 0 ESTABLISHED

Last edited by bdsffl; 05-07-2006 at 10:23 PM..
# 2  
Old 05-08-2006
Quote:
Originally Posted by bdsffl
Ok for clarification if I look at a netstat -a while an active
telnet session is taking place. I see two lines of telnet info
under the IPv4 heading. Whats the 2366 part of the remote
ip address?

TCP: IPv4
Local Address Remote Address Swind Send-Q Rwind Recv-Q State
*.telnet *.* 0 0 49152 0 LISTEN


sol10n.telnet 192.168.60.1.2366 64115 0 49640 0 ESTABLISHED

It is the port number on the remote system being used for communication.
# 3  
Old 05-10-2006
usually its the port where the remote party is coming from ...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Any example about sockets in C++?

Hi, i am student, think learning about c++, someone has a example the how establish a conection with sockets :b::b: (1 Reply)
Discussion started by: mmartinez
1 Replies

2. Red Hat

Sockets

hai guys, I'm doing a project in which one server communicates with several clients. How can i do it when i have different port numbers???:confused: (0 Replies)
Discussion started by: rajeshb6
0 Replies

3. Programming

Help with sockets in C

if i have a server which wants to connect to exactly 5 clients, does that mean i need 5 socket file descriptors and use listen(socket_fd,1); for each one or just do listen(socket_fd,5) also whats the second parameter number mean? what happens if i put 0 there? also if i am connected... (28 Replies)
Discussion started by: omega666
28 Replies

4. Programming

Sockets

Hi,i now moved into a different section where i need to use sockets. i am completely nill in sockets. can some body please provide me what are the requirements for a socket. to use sockets in c. thanks (1 Reply)
Discussion started by: MrUser
1 Replies

5. Programming

need help with sockets

anyone and teach me how to save standard output to a file in a client/server socket. I know how to read them to the screen but i'm not quite sure how to save them to a file. my read to screen file code: memset(line, 0x0, LINE_ARRAY_SIZE); while (recv(connectSocket, line, MAX_MSG, 0) >... (1 Reply)
Discussion started by: crunchyuser
1 Replies

6. Solaris

Sockets in use

Is there a way to see what sockets are in use? The developers here are getting some defunct processes and they would like to get a socket list. This is on a Solaris 8 machine. Thanks! (1 Reply)
Discussion started by: kjbaumann
1 Replies

7. Programming

sockets

Hai, How cani declare socket and collect the data in a string varialbe. Since i am new to this i am asking this. Can we connect multiple port. Thank you. (6 Replies)
Discussion started by: arunkumar_mca
6 Replies

8. IP Networking

sockets and ports

Hi, My question could be stupid for most of you, but is there any difference between sockets and ports? I work with an interface which pulls datas from certain sockets and sent a response to some other sockets. What can I immagine under sockets? Thanks (1 Reply)
Discussion started by: giulianob
1 Replies

9. Programming

Sockets!?!?!?!?!?!

I am looking for a way to have a program listen on a port (example: 8000) for communication I will be sending via that port to it(Linux Kernel machine). Once it recieves an appropiate command I need it to run a .bat file in linux. I know what I need to do but I am running into a few problems:... (8 Replies)
Discussion started by: bigB8210
8 Replies

10. Programming

sockets...

Hi ! I had a verry simple question to ask... In unix when we create pipes.. the unnamed pipes that is... is there any way to access those pipes outside the code ? Another thing.. do sockets have an entry in the inode table ? TIA, Devyani. (1 Reply)
Discussion started by: devy8
1 Replies
Login or Register to Ask a Question