Add TCP Options

459 Views Asked by At

Is there any easy & fast way to add TCP options to the SKB packet like Window scaling factor or Time stamp with C on netfilter. Or if any body has example it would be perfect to see.

Thank you

1

There are 1 best solutions below

2
On

One of the fastest way is by using sysctl and following are various options, but as you are interested in window size and timestamp are below:

net.ipv4.tcp_slow_start_after_idle
net.ipv4.tcp_timestamps

The command to control them is:

sudo sysctl -w <option=123>

Otherwise you can control it programatically like the way timestamp is controlled either in software or hardware in this guide.