My principles are:
- for plain lists use arrays (or array references),
- for lists with named attributes use hashes (or hash references).
So both on the router level and on the peer level you have plain lists, otherwise you have named attributes. So I would propose the following, which also allows for a simpler iteration over the structure:
use strict;
use warnings;
my $router_data = [ # array of hashes for each router
{ # hash for router 1
routerName => 'asr01',
ipAddr => '1.1.1.1',
bgpPeer => [ # array of hashes for each peer
{ # hash for first peer
Name => 'PEER1',
ASN => '111',
prefixList => 'PREFIX-PEER1-OUT',
},
{ # hash for second peer
Name => 'PEER2',
ASN => '222',
prefixList => 'PREFIX-PEER2-OUT',
},
],
},
{ # hash for router 2
routerName => 'asr02',
ipAddr => '2.2.2.2',
bgpPeer => [ # array of hashes for each peer
{ # hash for first peer
Name => 'PEER1',
ASN => '333',
prefixList => 'PREFIX-PEER1-OUT',
}
],
},
];
for my $router ( @$router_data ) {
print $router->{routerName}." : \n";
for my $peer ( @{ $router->{bgpPeer} } ) {
print $peer->{prefixList}."\n";
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.