41
iperf-3
iPerf – The ultimate speed test tool for TCP, UDP and SCTP
Server:
iperf3 -s
Client:
iperf3 -c 192.168.1.1
TinyCore
#!/bin/sh
# Variable Assignment
INTERFACE=eth0
ADDRESS=192.168.0.100
BROADCAST=192.168.0.255
GATEWAY=192.168.0.1
NETMASK=255.255.255.0
NAMESERVER1=8.8.8.8
NAMESERVER2=8.8.4.4
# Bring up the interface
ifconfig $INTERFACE $ADDRESS netmask $NETMASK broadcast $BROADCAST up
route add default gw $GATEWAY $INTERFACE
# Create DNS Lookup File
cat > /etc/resolv.conf <
tce-load -iw iperf3.tcz
43