So first this should go without saying, ensure that your kernel is configured to support SCTP. Based on your provided configuration, it seems that the Option is not set. This option is crucial for SCTP support. You'll need to install some necessary packages:
Code:
sudo apt-get update
sudo apt-get install build-essential libncurses-dev bison flex libssl-dev libelf-dev
Download the appropriate kernel source for your version. Replace 5.10.35 with your exact version if necessary:
Code:
wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.35.tar.xz
tar -xf linux-5.10.35.tar.xz
cd linux-5.10.35
Copy your current kernel configuration and open the configuration menu:
Code:
cp /boot/config-$(uname -r) .config
make menuconfig
Navigate to Networking support -> Networking options -> The SCTP protocol and enable it Next you need to compile and install the kernel:
Code:
make -j$(nproc)
sudo make modules_install
sudo make install
Would also be a good idea to update GRUB, the bootloader. So next pdate your bootloader to use the new kernel. This step may vary depending on your bootloader (e.g., GRUB):
Then reboot, and see if the SCTP module works.