Thread hash automatischfüllen
(22 answers)
Opened by Gast at 2006-08-09 13:27
habe nur das $ entfernt.
zusätzlich habe ich den Quelltext mal aufgeräumt und use:strict verwendet Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 #! usr/bin/perl -w use GraphViz; use SNMP_util "0.90"; use subroutine; use Data::Dumper; use strict; my @ip = qw(10.17.5.201 10.16.5.201 10.37.4.201 10.46.10.201 10.17.3.201 10.18.5.201); my $ipaddress; my @port_address_table; my @mac_tabel_filter; my @mac_tabel_result; my $graph; my %mac_ip; my %graph; foreach $ipaddress (@ip){ my $host = ("rmon12\@$ipaddress"); my @snmp_result_port_mac = &snmpwalk($host, ("1.3.6.1.2.1.2.2.1.6")); my @mac_address_port = convert_mac_address(@snmp_result_port_mac); foreach my $port_mac (@mac_address_port){ push (@port_address_table, $port_mac); } my @snmp_result = &snmpwalk($host, ("1.3.6.1.2.1.17.4.3.1.1")); my @mac_address_result = convert_mac_address(@snmp_result); foreach my $port_address_table (@port_address_table) { foreach my $mac_address (@mac_address_result) { if ($mac_address eq $port_address_table){ if ($mac_address =~/[a-fA-F1-9]$/){ push (@mac_tabel_result, $mac_address); $mac_ip{$mac_address} = $ipaddress; } } } } } foreach my $ipaddress (@ip){ my $host = ("rmon12\@$ipaddress"); my @snmp_result_port_mac = &snmpwalk($host, ("1.3.6.1.2.1.2.2.1.6")); my @mac_address_port = convert_mac_address(@snmp_result_port_mac); foreach my $mac_port_address (@mac_address_port) { foreach my $mac_address_2 (@mac_tabel_result) { if ($mac_address_2 eq $mac_port_address){ push @{$graph{$ipaddress}},$mac_ip{$mac_address_2}; } } } } print Dumper(\%graph); my $g = GraphViz->new(); for my $k (keys %graph) { $g -> add_edge($k=>$_) for @{$graph->{$k}}; } print $g->as_png('graph.png'); |