historical archive of an early approach towards a stand-alone AUthentication Center.
Use osmo-hlr instead.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/usr/bin/perl -w
|
|
|
|
# this script can generate a CSV file with the specified number of
|
|
# entries, which in turn can be used from osmo-auc.
|
|
|
|
use strict;
|
|
|
|
my $COUNT = $ARGV[0];
|
|
my $i;
|
|
|
|
for ($i = 0; $i < $COUNT; $i++) {
|
|
printf("90170%010u,5,%032u,%032u,0000,%08u,0\n", $i, $i, $i, $i);
|
|
}
|
|
|