> I have two Iperf running in UDP server mode on the same linux machine ( > servers listening on different udp port number ). > > I want to kill only one of these by a script. How can I do it ? You would need to keep track of the process id numbers and then use something like "kill" to terminate them. -Tanya