From 34049de25b15e287f76db832a46913b2cfed2ee4 Mon Sep 17 00:00:00 2001 From: Alex Gavin Date: Wed, 18 Mar 2026 22:29:32 -0700 Subject: [PATCH] lf_many_vphy.pl: Remove script Virtual phys were removed from LANforge last year Signed-off-by: Alex Gavin --- lf_many_vphy.pl | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 lf_many_vphy.pl diff --git a/lf_many_vphy.pl b/lf_many_vphy.pl deleted file mode 100755 index 47db39216..000000000 --- a/lf_many_vphy.pl +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/perl -w -# Create lots of virtual radios with stations. -# Note that lf_associate_ap.pl has many more options that -# are not currently used here. - -use strict; -use Getopt::Long; - -my $usage = "$0 - [--num_radios { number } ] - [--ssid {ssid}] -"; - -my $num_radios = 1; -my $ssid = "ssid"; - - - - -GetOptions ( - 'num_radios|r=i' => \$num_radios, - 'ssid|s=s' => \$ssid, - ) || (print($usage) && exit(1)); - -my $i; -for ($i = 0; $i < $num_radios; $i++) { - my $idx = $i + 1; - my $sta = 600 + $idx; - my $cmd = "./lf_associate_ap.pl --resource 1 --radio vphy$idx --vrad_chan 1 --num_stations 1 --first_sta sta$sta --action add --first_ip DHCP --ssid $ssid"; - print "$cmd\n"; - system($cmd); -}