in reply to Re^2: Using optional table option in Net::Netmask
in thread Using optional table option in Net::Netmask

Cracked it I think.
The documentation is misleading:
->storeNetblock([$t])
It doesn't mean pass an array - it means that $t is an optional argument.
This works for me:
my $acl_tbl = {}; $acl_block->storeNetblock($acl_tbl);

Replies are listed 'Best First'.
Re^4: Using optional table option in Net::Netmask
by cummiro (Initiate) on Oct 25, 2011 at 15:15 UTC

    That was it. I thought I had tried that, but I guess something was missing. Thanks so much!!!!!