Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Most/all distro shipped kernels have the TCP/IP (IPv4 atleast) stack built into the kernel, not as a module. So you'll have to compile your own kernel. – nos Feb 12 at 9:50
@nos that's the worst case!!! I have removed the TCP/IP stack by re-compiling ...thanxx... – akp Feb 12 at 9:56

closed as off topic by EJP, M42, tombom, Jonathan Day, CloudyMarble Feb 12 at 12:31

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.