Hi,
The sysctl settings via NED parameters currently not implemented in TCP_NSC.
You can add next patch at the end of TCP_NSC::initialize() function in transport/tcp_nsc/TCP_NSC.cc for change sysctl parameters.
#####################
pStackM->if_attach(localInnerIpS.str().c_str(), localInnerMaskS.str().c_str(), 1500);
pStackM->add_default_gateway(localInnerGwS.str().c_str());
+ int err = pStackM->sysctl_set("name","value"); // one or more lines, both parameters are cstring!
isAliveM = true;
}
#####################
The accepted values for name parameter found in nsc-0.5.2/linux-2.6.26/nsc/sysctl.c file, see nsc_linux_sysctl_map[] in code.
Zoltan Bojthe