bash-3.00# ndd -set /dev/tcp tcp_wscale_always 0
The original value for this tunable option was '1'. Interesting, running this command on the Linux (Oracle 11g) side had no effect. Running it on the Solaris (Tomcat Application Server) side solved the problem.
Fyi...to view the current setting of this property, you can run:
$ /usr/sbin/ndd -get /dev/tcp tcp_wscale_always
A value of 0 is off. A value of 1 is on. I'm able to run this command as myself. I don't need to be root.
3 comments:
Post a Comment