I am testing my own protocol stack for IP packets & this is done with the help of kernel-modules. So i registers my stack as the handler for IP packets in the linux kernel. But due to TCP/IP stack same packets buffer sk_buff pointer is given to both protocol stacks as one is my new stack and another is TCP/IP stack.
so in linux, can we disable the TCP/IP stack as we know that TCP/IP stack is made of modules. So can we remove the module using rmmod command? or using any other way.
If we can then please tell me how?