Questions tagged [sctp]

Stream Control Transmission Protocol (SCTP) is a transport layer protocol providing reliable transport of data like TCP but with message oriented features like UDP.

It provides some of the same service features of both: it is message-oriented like UDP and ensures reliable, in-sequence transport of messages with congestion control like TCP.

http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol

230 questions
0
votes
0 answers

How to get SCTP association level Statistics in Java?

Is there a way to get the SCTP level statistics in Java? I am using com.sun.nio.sctp package. I didn't find information about SCTP statistics in Java. I would be interested to know similar SCTP association level statistics which can be fetched using…
pradeep
  • 45
  • 1
  • 5
0
votes
1 answer

Liveness Probes Control With Sctp

Kubernetes use tcp, http and command for liveness probes but i want to use sctp. How can i use sctp with liveness probes for control my page?
İkbal
  • 3
  • 2
0
votes
0 answers

using multiple socket in alternate fashion to send and rcv data via SCTP in C

I am writing a C client server program using SCTP, so that at begin there is only one socket opened on client side for send and recv which is used by all threads. After a certain condition I have to open a new socket, now I have two of them and at…
myquest4 sh
  • 371
  • 4
  • 16
0
votes
3 answers

Unable to expose SCTP server running in a kubernetes pod using NodePort

I have a single node kubernetes cluster running in a VM in azure. I have a service running SCTP server in port 38412. I need to expose that port externally. I have tried by changing the port type to NodePort. But no success. I am using flannel as a…
0
votes
1 answer

how use SCTP_nodelay in python?

I'm trying to use sctp_nodelay but it seems not possible in python. I looked for an exemple in the internet but only tcp_nodelay found. Someone has an idea ? thank you in advance
Midou
  • 3
  • 5
0
votes
1 answer

gen_sctp:open(). returns exception error: bad argument - only for Erlang compiled from sources for Docker Image based on Rocky Linux

I prepared some time ago Docker Container Image based on CentOS 7.9 with erlang-otp build 22.3.4.11 from sources - https://github.com/erlang/otp/releases/download/OTP-22.3.4.11/otp_src-22.3.4.11.tar.gz. All worked fine - as expected: Erlang/OTP 22…
Diodak
  • 1
0
votes
1 answer

SCTP message is not getting initiated

Trying to initiate the SCTP association, but no message is getting initiated. Checked in the redhat linux machine, couldn't see sctp. checksctp checksctp: Protocol not supported lsmod | grep sctp lksctp-tools-1.0.17-2.el7.x86_64 package is installed…
sham
  • 31
  • 2
0
votes
1 answer

Inject sctp packets

I've been trying to inject sctp packets in linux environment with no success, This is what I have done, I've created an association between two points(one terminal with sctp server and another terminal with sctp client). Then I sent a char from…
devbag
  • 1
  • 1
0
votes
1 answer

SCTP State Cookie

I know that sctp does prevents SYN/Flooding (Denial of service) by the use of state cookies every echoed cookie is stored at a session-browser buffer level. But what does the state cookie actually contains?!
Jean
  • 15
  • 4
0
votes
2 answers

What transport protocols are supported in Windows 10?

Obviously TCP/UDP are supported in Windows but are there any other transport protocols? I know that SCTP and DCCP exist but cant seem to find any reference to them with regards to their support in Windows OSes and only managed to find third party…
TMStackO
  • 313
  • 3
  • 13
0
votes
1 answer

Client sends ABORT in response to SCTP INIT ACK

I am working on telcom product and using a tool to create SCTP connection with peer node. I see that client sends INIT to server, Server sends back INIT-ACK. Now client is generating ABORT to this message. I wonder what might have gone wrong.
ajay thakur
  • 111
  • 1
  • 3
0
votes
1 answer

How to communicate between Docker container and Linux host over SCTP

I tried to listen to SCTP on the docker container and connect to there from the Linux host machine. But it seems the connection timed out. Is there any way to communicate between host and container over SCTP? FYI: It looks container-to-container…
moznion
  • 37
  • 7
0
votes
1 answer

How to remove "IPv4 address parameter" field (optional) in a SCTP packet in Ubuntu

I want to send a SCTP packet to a server using L2TP VPN in Ubuntu 20.04. For this purpose, I have set up my L2TP VPN and I can successfully test the connection using ping command. Now my ifconfig output is as follows: enp0s31f6:…
0
votes
2 answers

changing the protocol for client to server

I have to test the value from client to server using different protocols (Tcp , UDP , Sctp). Please guide how it can be possible. Is there any way in windows to change the protocol or is there anyway to find it by using software like packet tracer .…
0
votes
1 answer

SCTP : transmitting with both interfaces at the same time

On my machine, I have 2 interfaces connected to another machine with 2 interfaces as well. I want to use both interfaces at the same time to transfer data. From SCTP view, each machine is an endpoint. So, I used a one-to-one socket. On the server…
HealthyDev
  • 25
  • 3