in reply to Re^2: accessing a hash of hashes
in thread accessing a hash of hashes

foreach my $network (keys %urls) { foreach my $key (keys %{$urls{$network}}) { print "$key<br/>"; } }
or
foreach my $network (values %urls) { foreach my $key (keys %$network) { print "$key<br/>"; } }