Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for SCTP connection tracking #12

Closed
PacketCrunch opened this issue Jun 27, 2022 · 2 comments
Closed

Support for SCTP connection tracking #12

PacketCrunch opened this issue Jun 27, 2022 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@PacketCrunch
Copy link
Collaborator

Most telco/3GPP systems and frameworks use SCTP protocol. We need to implement stateful conntracking for SCTP and support proper load-balancing of the same

@PacketCrunch PacketCrunch added the enhancement New feature or request label Jun 27, 2022
@PacketCrunch PacketCrunch self-assigned this Jun 27, 2022
@PacketCrunch
Copy link
Collaborator Author

For sctp ct/lb testing, we could use socat tool as follows -

  • Server Side
socat sctp-listen:80 STDOUT
  • Client Side
echo "Hello World" | socat - sctp:32.32.32.1:80,sp=55001

@PacketCrunch
Copy link
Collaborator Author

PacketCrunch commented Aug 7, 2022

How to test sctp connections -

Server side

socat sctp-listen:5001 STDOUT

Client side

echo "Hello" | socat - sctp:20.20.20.1:5001,sp=55001

Also, possible to test using sctp_test tool as follows -

Server side

sctp_test -H 32.32.32.1 -P 5001 -l

Client side

sctp_test -H 100.100.100.1 -P 55002 -h 32.32.32.1 -p 5001 -s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant