Great Monks,

Hit a wall extracting data from a hash of arrays.

while(<>) { chomp; if ( /set\spolicy\sid\s(\d+)\s(from|name\s\"[^"]+\")?\sfrom/ ) { $ +id = $1; push ( @{ $id_policy{$id}}, $_ ); next; } push ( @{$id_policy{$id}}, $_ ) if $id } for my $id ( keys %id_policy ) { foreach (@{ $id_policy{$id} }) { if ( /set\spolicy\sid\s(\d+)\s(from|name\s\"[^"]+\"\sfrom)\s\" +Untrust\"\sto\s"DMZ/ ) { # ????????? } } }

input set policy id 155 from "Trust" to "Untrust" "**** Users" "Safe Boot S +ervers" "ANY" nat src permit set policy id 155 exit set policy id 150 from "DMZ" to "Untrust" "**** Zone1" "Postini" "SMT +P" nat src permit log set policy id 150 set src-address "**** Zone2" set src-address "***** Farm Servers" set src-address "**** Zones" set log session-init exit set policy id 154 from "Trust" to "DMZ" "*** - **** DB" "****" "Oracl +e - 1521" permit set policy id 154 exit set policy id 157 from "Untrust" to "Trust" "Postini" "MIP(194.82.*** +.***)" "SMTP" permit set policy id 157 exit set policy id 162 from "DMZ" to "Trust" "*****" "****_DEV Database se +rver" "HTTP" permit set policy id 162 exit set policy id 163 name "mail-relay.**** => OUTBOUND" from "Trust" to " +Untrust" "Mail-Relay" "Postini" "SMTP" nat src dip-id 5 permit set policy id 163 exit

I would like to output the entire array for the match Untrust to DMZ.

set policy id 148 from "Untrust" to "DMZ" "Any" "MIP(194.82.***.180)" + "HTTP" permit set policy id 148 application "HTTP" set policy id 148 exit

Thanks,

k_grdn


In reply to Dereference Hash of Arrays by k_grdn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.