Thread hash automatischfüllen (22 answers)
Opened by Gast at 2006-08-09 13:27

hucks
 2006-08-17 12:00
#68787 #68787
User since
2006-08-10
16 Artikel
BenutzerIn
[default_avatar]
Das ist das script wo es nicht geht, und folgendes ausgegeben wird bei Data Dumper
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$VAR1 = {

'10.17.5.201' => [

'10.17.3.201',

'10.18.5.201',

'10.37.4.201',

'10.16.5.201'

],

'10.37.4.201' => [

'10.46.10.201'

]

};


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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#! usr/bin/perl -w

use GraphViz;

use SNMP_util "0.90";

use subroutine;

use Data::Dumper;



#use strict;

#$path = "/media/hda5/nemo/";

open (DATEI,">d:/mac/mac_tabel.txt");

close DATEI;

open(DATEI,">d:/mac/tree.txt");

close DATEI;



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 @mac_address_liste = qw(00-11-0A-4E-81-00 00-11-85-35-66-00 00-11-85-5A-A5-00 00-11-85-2F-51-00 00-0E-7F-C1-62-80 00-11-85-2E-6D-80);

my $ipaddress;

my @port_address_table;

my @mac_tabel_filter;

my @mac_tabel_result;

my %y;



foreach $ipaddress (@ip){



    my $host = ("rmon12\@$ipaddress");

    my @snmp_result_port_mac = &snmpwalk($host, ("1.3.6.1.2.1.2.2.1.6"));

    

    

    %y = port_analyse(@snmp_result_port_mac);

    my @mac_address_port = convert_mac_address(@snmp_result_port_mac);

    open(DATEI,">d:/mac/test.txt") ;

               
     print DATEI "$ipaddress
";

               
     print DATEI @mac_address_port;

               
     close DATEI;

    foreach my $port_mac (@mac_address_port){



        push (@port_address_table, $port_mac);

    }



    open (DATEI,">>d:/mac/mac_tabel.txt");

    print DATEI "$ipaddress
";

    print DATEI "-------------

";

    close DATEI;

    



    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]$/){

               
             open(DATEI,">>d:/mac_tabel.txt") ;

               
             print DATEI "$mac_address
";

               
             close DATEI;

               
             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){

               
     open(DATEI,">>d:/mac/tree.txt") ;

               
     print DATEI "An Switch $ipaddress ist Switch:";

               
     print DATEI "$mac_ip{$mac_address_2} angeschlossen
";

               
     close DATEI;

               
     #$graph = $graph.$mac_ip{$mac_address_2}; 

               
     push @{$graph{$ipaddress}},$mac_ip{$mac_address_2};

               
 }

            }

        }            

               
 

#$graph{$ipaddress} = $graph;

#print "$graph
";

}

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'); 



#Textdatein zum verlgeich    

open(DATEI,">d:/mac/mac_port_address_variable.txt") ;

print DATEI "$ipaddress
";

print DATEI @mac_address_port;

close DATEI;

open(DATEI,">>d:/mac/mac_address_2_variable.txt") ;

print DATEI "$ipaddress
";

print DATEI @mac_address_result;

print DATEI @mac_tabel_result;

close DATEI;



open(DATEI,">d:/mac/mac_ip_hash.txt") ;

print DATEI %mac_ip;

close DATEI;

#print "--------------";

#print %y;

open(DATEI,">d:/mac/mac_port_hash.txt") ;

print DATEI %y;

close DATEI;



und das das wo es geht aber bei DataDump folgendes ausgegeben wird
Code: (dl )
$VAR1 = {};

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
use GraphViz;

use Data::Dumper;

my $switches ={

'switch0' => ['switch1', 'switch2'],

'switch1' => ['switch4']

};

my $g = GraphViz->new();





for my $k (keys %$switches) { 



$g -> add_edge($k=>$_) for @{$switches->{$k}};

}

print $g->as_png('graph.png');           

print Dumper(\%switches);        
\n\n

<!--EDIT|hucks|1155801714-->

View full thread hash automatischfüllen