I need to change and test some TCP/IP network parameters on a Oracle Solaris 10 as a possible workaround for a bug in 'Oracle Hyperion EPM 11.2.1.0' in the development environment. I am not a Solaris/UNIX expert so would appreciate any guidance to identify the correct parameters and also it would be very helpful if you could tell me the possible impact of the changes and how I could have the admin support rollback the changes.
I need to decrease the time wait before closing the sockets. I already have the corresponding UNIX command:
$ echo 3 > /proc/sys/net/ipv4/tcp_fin_timeoutI need to check if the System is preventing the 'Oracle Hyperion EPM' application from using a large number of sockets. How do I check the port range and modify it? The UNIX command for it would be:
$ echo "1025 65535" > /proc/sys/net/ipv4/ip_local_port_range
I am advised that I need to make these changes as root and execute the following UNIX command for applying the changes: $ /etc/rc.d/init.d/network restart
Kindly guide me to identify which are the corresponding Solaris commands. Thanks.
References:
- I looked at the parameters in
$ ndd /dev/tcp \? - http://docs.oracle.com/cd/E19082-01/819-2724/6n50b07lr/index.html
- http://www.informit.com/articles/article.aspx?p=101138&seqNum=6

$ man nddis not that helpful? – Kent Pawar Feb 20 at 5:17tcp_fin_waitis for connections that don't close properly (lost ack).tcp_time_waitis for normal closed connections (to hold a slot open to soak up stray packets), usually the first thing to tune on a busy server. – mr.spuratic Feb 20 at 10:06