PacketFence
Bug Tracking System

View Issue Details Jump to Notes ] Issue History ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0000544PacketFencecorepublic2009-01-22 11:162012-02-29 10:57
Reporteruser4 
Assigned Touser4 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0000544: Cisco Catalyst 2950 and getRegExpFromList
DescriptionThe 12.1(22)EA11 IOS seems to have a whitespace at the end of the mac-address-table

2950-41#show mac-address-table | include Fa0/16
   1 0011.2514.1545 STATIC Fa0/16

2950-41#show mac-address-table | include Fa0/16$

2950-41#show mac-address-table | include Fa0/16 $
   1 0011.2514.1545 STATIC Fa0/16

This causes the regexp generated in getRegExpFromList to fail to retrieve the MAC addresses
TagsNo tags attached.
fixed in git revision
fixed in mtn revision
Attached Files

- Relationships

-  Notes
(0001028)
user4
2009-01-22 11:30

fixed in mtn revision a3d20cd35ff10eb8bd69c3011ece4e6cbdc49b88

Diff is:
--- pf/lib/pf/SNMP.pm 956c72a96ea3c5aacc3f172e267313bdb60dd8e4
+++ pf/lib/pf/SNMP.pm ab2023ac38c9cec69d5bc4abf331c34daed05d2c
@@ -1009,7 +1009,7 @@ sub getRegExpFromList{
         }
         $regexp .= '))';
     }
- $regexp .= ')$';
+ $regexp .= ')[^0-9]*$';
     return $regexp;
 }
(0001029)
user4
2009-01-22 11:30

Reminder sent to: rbalzard


- Issue History
Date Modified Username Field Change
2009-01-22 11:16 user4 New Issue
2009-01-22 11:16 user4 Status new => assigned
2009-01-22 11:16 user4 Assigned To => user4
2009-01-22 11:30 user4 Status assigned => closed
2009-01-22 11:30 user4 Note Added: 0001028
2009-01-22 11:30 user4 Resolution open => fixed
2009-01-22 11:30 user4 Note Added: 0001029
2010-04-15 17:53 obilodeau Category 1.8.0 => 1.8.x
2012-02-29 10:57 obilodeau Category 1.8.x => core


Copyright © 2000 - 2012 MantisBT Group
Powered by Mantis Bugtracker