Skip to main content

Questions tagged [socket]

A socket is an abstract network construct with a sending and receiving side. In most modern operating systems (OS) there are device representations, and programming tools to address sockets.

0 votes
0 answers
38 views

I'm experiencing a socket leak in a network-intensive application where the number of sockets in the 'closed' state reported by ss -s does not match the actual count from detailed commands. Here are ...
ermak's user avatar
  • 1
0 votes
1 answer
456 views

I'm encountering a persistent issue where a TCP port remains stuck in the LISTENING state, but the process that allocated it cannot be found. This happens even though the application that originally ...
Fatih's user avatar
  • 103
0 votes
1 answer
1k views

Suddenly after restarting the machine, I have been facing this error can't connect to MySQL server and table plus is not able to connect with localhost 127.0.0.1. The steps below worked for me, and ...
Rizwan Ali's user avatar
1 vote
1 answer
270 views

I have a device (Blackmagic 2110 IP Converter 3x3G) connected to my PC that is sending me some ST-2110 video stream over 239.255.2.164. I need to receive this data. My NIC does not have any IP address ...
rosewater's user avatar
  • 113
1 vote
1 answer
609 views

ss -tm shows detailed memory information about each TCP session. I found that some of the tcp sessions show sock_drop, here is one: ESTAB ***** some irrelevant info here **** ...
PeopleMoutainPeopleSea's user avatar
-1 votes
1 answer
613 views

I'm aware of two main ways to write and receive network packets from an existing network interface on linux. The first is with the classic sockets API, in which the linux kernel is responsible for ...
Alex Flint's user avatar
0 votes
0 answers
200 views

I need a config for apache 2.4 which just connects to an open socket and talks fcgi over it. I am writing my own fcgi-enabled web app. By now, it opens a listening socket and when a web server (nginx ...
K. Nick's user avatar
1 vote
0 answers
308 views

We have a client/server implementation, where the client continuously, periodically sends data at 800Hz over ethernet. The packets are small so we're significantly under the network bandwidth limit. ...
Morten Nissov's user avatar
0 votes
1 answer
1k views

My understanding, from various sources (e.g. here and here) is that raw sockets are not affected by iptables rules. However in practice, I am seeing iptables prevent me from sending packets on a raw ...
dipea's user avatar
  • 121
2 votes
0 answers
191 views

I have the strange issue that a session without obvious cause hangs and timeouts. The session is a syslog stream with rather high volume, and traffic only flows from client to server. In capture files ...
user2567482's user avatar
4 votes
0 answers
2k views

This article: It’s always TCP_NODELAY. Every damn time. suggests, as a bottom line, to set TCP_NODELAY by default, always. Can I do that on a (recent) GNU/Linux system... As root, for all sockets ...
einpoklum's user avatar
  • 1,877
2 votes
0 answers
2k views

I have MySQL running on port 1835, as proven by running the command: lsof -i:1835 The following was run to open the port on the firewall: ufw allow 1835/tcp ufw enable ufw reload But the port cannot ...
Andy's user avatar
  • 31
0 votes
0 answers
101 views

Suppose both the client as well as the server are on the same machine and they want to do mTLS. They both choose to offload the TLS to Kernel (kTLS). Now when the key exchange happens, given the ...
ninja.coder's user avatar
2 votes
0 answers
353 views

Here is some lightly modified output from netstat (I removed the addresses and names) a@xxxxx:/app# netstat -p Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address ...
zelinka's user avatar
  • 121
-1 votes
1 answer
237 views

Direct Return Server overview: The DRS allows real servers to directly reply to a client without going through load balancer (LB). The LB ip (VIP) is configured as a loopback (localhost) ip for the ...
Tom's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
39