mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-28 17:32:35 +00:00
These scripts will now be publicly available in a git repo for easier shared development and change tracking.
298 lines
9.7 KiB
Perl
Executable File
298 lines
9.7 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
# This program is used to stress test the LANforge system, and may be used as
|
|
# an example for others who wish to automate LANforge tests.
|
|
|
|
# This script is used to test 4 high-end machines. Two of them have
|
|
# GigE NICs in them, and will be configured to run back-to-back. Two
|
|
# other machines have a 4-port NIC and 2 single-port NICs. These ports
|
|
# will be configured to talk to each other..
|
|
|
|
# Un-buffer output
|
|
$| = 1;
|
|
|
|
use Net::Telnet ();
|
|
|
|
my $lfmgr_host = "lanf3";
|
|
my $lfmgr_port = 4001;
|
|
|
|
my $shelf_num = 1;
|
|
|
|
# Specify 'card' numbers for this configuration.
|
|
my $lanf1 = 1;
|
|
my $lanf2 = 2;
|
|
my $lanf3 = 3;
|
|
my $lanf4 = 4;
|
|
|
|
my $test_mgr = "whoi";
|
|
|
|
my $loop_max = 100;
|
|
my $start_stop_iterations = 100;
|
|
my $run_for_time = (60 * 60 * 24); # Run for XX seconds..then will be stopped again
|
|
my $stop_for_time = 5; # Stop for XX seconds..then will be started again
|
|
my $report_timer = 3000; # 3 seconds
|
|
|
|
|
|
########################################################################
|
|
# Nothing to configure below here, most likely.
|
|
########################################################################
|
|
|
|
my @endpoint_names = (); #will be added to as they are created
|
|
my @cx_names = ();
|
|
|
|
# Open connection to the LANforge server.
|
|
|
|
my $t = new Net::Telnet(Prompt => '/default\@btbits\>\>/');
|
|
|
|
|
|
$t->open(Host => $lfmgr_host,
|
|
Port => $lfmgr_port,
|
|
Timeout => 10);
|
|
|
|
$t->waitfor("/btbits\>\>/");
|
|
|
|
my $dt = "";
|
|
|
|
# Do some thing over and over again...
|
|
my $loops = 0;
|
|
for ($loop = 0; $loop<$loop_max; $loop++) {
|
|
$dt = `date`;
|
|
chomp($dt);
|
|
print "\n\n***** Starting loop: $loop at: $dt *****\n\n";
|
|
|
|
# Remove any existing configuration information
|
|
initToDefaults();
|
|
|
|
print " ***Sleeping 8 seconds for ports to initialize to defaults...\n";
|
|
sleep(8);
|
|
|
|
#exit(0);
|
|
|
|
# Now, add back the test manager we will be using
|
|
doCmd("add_tm $test_mgr");
|
|
doCmd("tm_register $test_mgr default"); #Add default user
|
|
doCmd("tm_register $test_mgr default_gui"); #Add default GUI user
|
|
|
|
# Add some IP addresses to the ports
|
|
initIpAddresses();
|
|
|
|
print " ***Sleeping 8 seconds for ports to initialize to current values...\n";
|
|
sleep(8);
|
|
|
|
# Add our endpoints
|
|
addCrossConnects();
|
|
|
|
my $rl = 0;
|
|
for ($rl = 0; $rl<$start_stop_iterations; $rl++) {
|
|
if (($rl % 2) == 0) {
|
|
doCmd("set_cx_state $test_mgr all RUNNING");
|
|
}
|
|
else {
|
|
# Do one at a time
|
|
my $q = 0;
|
|
for ($q = 0; $q<@cx_names; $q++) {
|
|
my $cmd = "set_cx_state $test_mgr " . $cx_names[$q] . " RUNNING";
|
|
doCmd($cmd);
|
|
}
|
|
}
|
|
|
|
print "Done starting endpoints...sleeping $run_for_time seconds.\n";
|
|
sleep($run_for_time);
|
|
|
|
# Now, stop them...
|
|
|
|
if (($rl % 2) == 0) {
|
|
doCmd("set_cx_state $test_mgr all STOPPED");
|
|
}
|
|
else {
|
|
# Do one at a time
|
|
my $q = 0;
|
|
for ($q = 0; $q<@cx_names; $q++) {
|
|
my $cmd = "set_cx_state $test_mgr " . $cx_names[$q] . " STOPPED";
|
|
doCmd($cmd);
|
|
}
|
|
}
|
|
|
|
sleep($stop_for_time);
|
|
|
|
}# For some amount of start_stop iterations...
|
|
}# for some amount of loop iterations
|
|
|
|
$dt = `date`;
|
|
chomp($dt);
|
|
print "Done at: $dt\n\n";
|
|
exit(0);
|
|
|
|
|
|
sub initToDefaults {
|
|
# Clean up database if stuff exists
|
|
|
|
doCmd("rm_cx $test_mgr all");
|
|
doCmd("rm_endp YES_ALL");
|
|
doCmd("rm_test_mgr $test_mgr");
|
|
|
|
initPortsToDefault();
|
|
}#initToDefaults
|
|
|
|
|
|
sub initPortsToDefault {
|
|
# Set all ports we are messing with to known state.
|
|
my $i = 0;
|
|
|
|
# All have 3 ports
|
|
for ($i = 1; $i<=3; $i++) {
|
|
doCmd("set_port $shelf_num $lanf1 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf2 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf4 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
}
|
|
|
|
# lanf1, lanf3 have 6 ports total...
|
|
for ($i = 4; $i<=6; $i++) {
|
|
doCmd("set_port $shelf_num $lanf1 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 $i 0.0.0.0 0.0.0.0 0.0.0.0 NA NA NA");
|
|
}
|
|
|
|
}
|
|
|
|
|
|
sub initIpAddresses {
|
|
# Set all ports we are messing with to known state.
|
|
|
|
# Syntax for setting port info is:
|
|
# set_port [shelf] [card] [port] [ip] [mask] [gateway] [cmd-flags] [cur-flags] [MAC]
|
|
# NOTE: Just use NA for the flags for now...not tested otherwise.
|
|
|
|
# Set up GigE ports, they will talk to each other for now...
|
|
doCmd("set_port $shelf_num $lanf2 3 172.25.3.2 255.255.255.0 172.25.3.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf4 3 172.25.3.4 255.255.255.0 172.25.3.1 NA NA NA");
|
|
|
|
# Set up the 2 10/100 ports on the GigE machines. They will be set up to talk to
|
|
# each other too.
|
|
doCmd("set_port $shelf_num $lanf2 1 172.25.7.2 255.255.255.0 172.25.7.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf2 2 172.25.8.2 255.255.255.0 172.25.8.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf4 1 172.25.7.4 255.255.255.0 172.25.7.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf4 2 172.25.8.4 255.255.255.0 172.25.8.1 NA NA NA");
|
|
|
|
|
|
# Set up the ports NICs on lanf1. They should be connected to an ether-switch that also
|
|
# connects to the ports on lanf3. These will all be on the same subnet, but LANforge
|
|
# (Linux, really) magic will make them act as separate machines.
|
|
|
|
doCmd("set_port $shelf_num $lanf1 1 172.25.5.2 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf1 2 172.25.5.3 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf1 3 172.25.5.4 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf1 4 172.25.5.5 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf1 5 172.25.5.6 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf1 6 172.25.5.7 255.255.255.0 172.25.5.1 NA NA NA");
|
|
|
|
|
|
# Set up the ports on lanf3
|
|
|
|
doCmd("set_port $shelf_num $lanf3 1 172.25.5.102 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 2 172.25.5.103 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 3 172.25.5.104 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 4 172.25.5.105 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 5 172.25.5.106 255.255.255.0 172.25.5.1 NA NA NA");
|
|
doCmd("set_port $shelf_num $lanf3 6 172.25.5.107 255.255.255.0 172.25.5.1 NA NA NA");
|
|
|
|
}
|
|
|
|
sub addCrossConnects {
|
|
# Syntax for adding an endpoint is:
|
|
# add_endp [alias] [shelf] [card] [port] [type] [IP-port] [bursty] [min_rate] [max_rate]
|
|
# [pkt_sz_random] [min_pkt] [max_pkt] [pattern] [use_checksum]
|
|
|
|
# Set up first 50Mbps full duplex UDP link on the GigE ports.
|
|
doCmd("add_endp udp-gig1-TX $shelf_num $lanf4 3 lf_udp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_endp udp-gig1-RX $shelf_num $lanf2 3 lf_udp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_cx udp-gig1 $test_mgr udp-gig1-TX udp-gig1-RX");
|
|
@endpoint_names = (@endpoint_names, "udp-gig1-TX", "udp-gig1-RX");
|
|
@cx_names = (@cx_names, "udp-gig1");
|
|
|
|
# Set up first 50Mbps full duplex TCP link on the GigE ports.
|
|
doCmd("add_endp tcp-gig1-TX $shelf_num $lanf4 3 lf_tcp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_endp tcp-gig1-RX $shelf_num $lanf2 3 lf_tcp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_cx tcp-gig1 $test_mgr tcp-gig1-TX tcp-gig1-RX");
|
|
@endpoint_names = (@endpoint_names, "tcp-gig1-TX", "tcp-gig1-RX");
|
|
@cx_names = (@cx_names, "tcp-gig1");
|
|
|
|
|
|
# Set up first 50Mbps - 1Mbps asymetric TCP link
|
|
doCmd("add_endp tcp-gig2-TX $shelf_num $lanf4 3 lf_tcp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_endp tcp-gig2-RX $shelf_num $lanf2 3 lf_tcp -1 NO 10000000 10000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_cx tcp-gig2 $test_mgr tcp-gig2-TX tcp-gig2-RX");
|
|
@endpoint_names = (@endpoint_names, "tcp-gig2-TX", "tcp-gig2-RX");
|
|
@cx_names = (@cx_names, "tcp-gig2");
|
|
|
|
# Set up second 50Mbps - 1Mbps asymetric TCP link
|
|
doCmd("add_endp tcp-gig3-TX $shelf_num $lanf4 3 lf_tcp -1 NO 50000000 50000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_endp tcp-gig3-RX $shelf_num $lanf2 3 lf_tcp -1 NO 10000000 10000000 NO 12000 12000 increasing NO");
|
|
doCmd("add_cx tcp-gig3 $test_mgr tcp-gig3-TX tcp-gig3-RX");
|
|
@endpoint_names = (@endpoint_names, "tcp-gig3-TX", "tcp-gig3-RX");
|
|
@cx_names = (@cx_names, "tcp-gig3");
|
|
|
|
|
|
# Set up 6 cross-connects between lanf1 and lanf3
|
|
my $i = 1;
|
|
my $tp = "tcp";
|
|
my $tp2 = "lf_tcp";
|
|
my $rate = 6000000; # 6Mbps
|
|
|
|
for ($i = 1; $i<=6; $i++) {
|
|
my $tx_nm = "${tp}-qp${i}-TX";
|
|
my $rx_nm = "${tp}-qp${i}-RX";
|
|
|
|
doCmd("add_endp $tx_nm $shelf_num $lanf1 $i $tp2 -1 NO $rate $rate NO 4000 4000 random_fixed NO");
|
|
|
|
my $rt = $rate / 2; # Non-symetric cross-connect
|
|
|
|
doCmd("add_endp $rx_nm $shelf_num $lanf3 $i $tp2 -1 NO $rt $rt NO 4000 4000 decreasing NO");
|
|
|
|
my $cx_nm = "${tp}-qp${i}";
|
|
# Add cross-connect
|
|
doCmd("add_cx $cx_nm $test_mgr $tx_nm $rx_nm");
|
|
|
|
@endpoint_names = (@endpoint_names, $rx_nm, $tx_nm);
|
|
@cx_names = (@cx_names, $cx_nm);
|
|
}
|
|
|
|
|
|
# Set up 6 cross-connects between lanf1 and lanf3
|
|
$i = 1;
|
|
$tp = "udp";
|
|
$tp2 = "lf_udp";
|
|
$rate = 9000000; # 9Mbps
|
|
|
|
for ($i = 1; $i<=6; $i++) {
|
|
my $tx_nm = "${tp}-qp${i}-TX";
|
|
my $rx_nm = "${tp}-qp${i}-RX";
|
|
|
|
doCmd("add_endp $tx_nm $shelf_num $lanf1 $i $tp2 -1 NO $rate $rate NO 4000 4000 random_fixed NO");
|
|
|
|
my $rt = $rate / 2; # Non-symetric cross-connect
|
|
|
|
doCmd("add_endp $rx_nm $shelf_num $lanf3 $i $tp2 -1 NO $rt $rt NO 4000 4000 decreasing NO");
|
|
|
|
my $cx_nm = "${tp}-qp${i}";
|
|
# Add cross-connect
|
|
doCmd("add_cx $cx_nm $test_mgr $tx_nm $rx_nm");
|
|
|
|
@endpoint_names = (@endpoint_names, $rx_nm, $tx_nm);
|
|
@cx_names = (@cx_names, $cx_nm);
|
|
}
|
|
|
|
}#addCrossConnects
|
|
|
|
|
|
sub doCmd {
|
|
my $cmd = shift;
|
|
|
|
print ">>> $cmd\n";
|
|
|
|
$t->print($cmd);
|
|
my @rslt = $t->waitfor('/ \>\>RSLT:(.*)/');
|
|
print "**************\n @rslt ................\n\n";
|
|
#sleep(1);
|
|
}
|