Network speeds


 
Thread Tools Search this Thread
Operating Systems Solaris Network speeds
# 1  
Old 12-21-2006
Network speeds

Hello all,

We have a group of Solaris 8 machines that are having some real network performance issues, they all go through a switch which *should* be set at 100 mb full duplex on every port which goes back to a master switch. I have checked the machines and the NIC cards are all set at 100 full. I had a networking benchmark script that copyed files back and forth from the server and outputted the times it took to transfer them, I did this for a couple of other solaris machines to get something to compare to which arent in the same location as the other group of solaris machines. The windoze admin monkeys had also done the same sort of thing testing performance but looking at the results the windoze machines destroys the Solaris machines for speed. The group of solaris machines had really bad test times whcih were alot worse then the other solaris boxes. I was wondering if there was any test I could do for bottleneck performance and general issues relating to the machines before I confront the network manager. I know theres netstat but I dont really know what im looking for.

Sorry for the essay

regards
will
# 2  
Old 12-21-2006
Since I'm doing such QA tests all day long, I will ask the following :
what is the arch of those Suns, what is the hardware, what are the type of files that you are doing tests with, how big are they ? These are factors that will give us more clarity on this issue.
You have said "should", you have to be 100% sure for this, because this may be the main problem.
# 3  
Old 12-21-2006
there are few tools you can use that are more graphical like se tools by adrian cockroft but it's comprehensive and covers networks disks, memory cpu. Not sure if se tools are still being distributed haven't used them in quite a while. Try sunfreeware.com

actually I feel a lot of times the boxes we get after we install them comes with very basic default system values which very often you will need to tweak to meet your own performance requirements. I'm pretty sure many folks know this site but it's still worth a read to refresh memory from time to time http://www.sean.de/Solaris/soltune.html
# 4  
Old 12-21-2006
or if you want quick and dirty you can try these values, they r mostly tcp windows sizes, tcp send/receive congestion sizes. cwnd_max should throttle up yur thoroughput.

take a reading of the existing values first before making any changes.

/usr/sbin/ndd -set /dev/tcp tcp_max_buf 4194304
/usr/sbin/ndd -set /dev/tcp tcp_cwnd_max 2097152
/usr/sbin/ndd -set /dev/tcp tcp_xmit_hiwat 65536
/usr/sbin/ndd -set /dev/tcp tcp_recv_hiwat 65536
# 5  
Old 12-22-2006
Quote:
Originally Posted by sysgate
Since I'm doing such QA tests all day long, I will ask the following :
what is the arch of those Suns, what is the hardware, what are the type of files that you are doing tests with, how big are they ? These are factors that will give us more clarity on this issue.
You have said "should", you have to be 100% sure for this, because this may be the main problem.
Its Sparc Arc on SUnblade 150's

the files are just .dat files created by the script
# 6  
Old 12-22-2006
Quote:
Originally Posted by sparcguy
or if you want quick and dirty you can try these values, they r mostly tcp windows sizes, tcp send/receive congestion sizes. cwnd_max should throttle up yur thoroughput.

take a reading of the existing values first before making any changes.

/usr/sbin/ndd -set /dev/tcp tcp_max_buf 4194304
/usr/sbin/ndd -set /dev/tcp tcp_cwnd_max 2097152
/usr/sbin/ndd -set /dev/tcp tcp_xmit_hiwat 65536
/usr/sbin/ndd -set /dev/tcp tcp_recv_hiwat 65536
How do I find out the existing values?
# 7  
Old 12-22-2006
Quote:
Originally Posted by Mr Pink
How do I find out the existing values?
Use ndd -get

Code:
/usr/sbin/ndd -get /dev/tcp tcp_max_buf

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. IP Networking

I would like to monitor network traffic for a computer on my network

My son does homework on a school laptop. I was thinking about setting up a gateway on my home network, so that I can monitor web traffic and know if he is doing his homework without standing over his shoulder. Ideally I would like to use the Raspberry Pi Model b that I already have. However, I... (15 Replies)
Discussion started by: gandolf989
15 Replies

2. UNIX for Dummies Questions & Answers

VM v Physical Server Speeds

HI We have been asked by our IT department to move from our current physical solution to a VM environment. I am not that clued up on VM. I looked from some benchmark tests to run so i can see a comparison between our live and new VM we have been presented. Please see below for results. To me the... (3 Replies)
Discussion started by: treds
3 Replies

3. Red Hat

Network becomes slow and return fast only after restart network

Hi, I have 2 machines in production environment: 1. redhat machine for application 2. DB machine (oracle) The application doing a lot of small read&writes from and to the DB machine. The problem is that after some few hours the network from the application to the DB becomes very slow and... (4 Replies)
Discussion started by: moshesa
4 Replies

4. UNIX and Linux Applications

Access to network interface (Mac-network)

Hi, I'm a italian student. For my thesis I develop a gateway with protocol 6lowpan. For that I must access to network interface to develope my personal stack based on standard 802.15.4. Can you help me? I need an explanation for that. (0 Replies)
Discussion started by: berny88
0 Replies

5. Solaris

configure zones to have different network interface and network

i need to configure a zone to use different interface (bge2) than global and have connected to completely different network switch & to use its own defaultrouter and hosts file .. is it possible ..if so ..how ? Thanks (9 Replies)
Discussion started by: skamal4u
9 Replies

6. Shell Programming and Scripting

Getting upload and download speeds with the help of script?How?

How can I get the upload and download speed of my pc, provided that my interface is wlan0? I have though something like: #!/bin/sh ups=something downs=somethingelse echo " Your current up speed is $ups Your current down speed is $downs, but I have no idea how to get them?Are... (5 Replies)
Discussion started by: hakermania
5 Replies

7. IP Networking

ssh server is attachable from local network not from another network

hello i have a ubuntu ssh server that i can acess from any of my comnputers but only if they are on the same wireless network as the server. i tested trhis my tehtehring my samsung blackjack to my windows partition and installing openssh to windows it works when windows is on the wireless but no... (1 Reply)
Discussion started by: old noob
1 Replies

8. UNIX for Dummies Questions & Answers

finding out processor speeds for a sparc

i recently purchased a dual ross sparc processor kit from someone. the person listed these items as 133mhz processors, however, looking at bridgepoint's site, they do not make 133mhz processors. so i was wondering, how can i check the processor speeds? (4 Replies)
Discussion started by: xyyz
4 Replies
Login or Register to Ask a Question