#211 f5 class should respect UseEnums when faking i_type

This commit is contained in:
Oliver Gorwits
2017-06-28 17:36:23 +01:00
parent f5c5ec202a
commit f9464bcd6c
2 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ version 3.35 ()
* #180 support CiscoConfig on Nexus (sf.net:scratchfury) * #180 support CiscoConfig on Nexus (sf.net:scratchfury)
* #50 remove interface specific part from vrf interfaces on IOS (W. Vandersmissen) * #50 remove interface specific part from vrf interfaces on IOS (W. Vandersmissen)
* #211 f5 class should respect UseEnums when faking i_type
version 3.34 (2016-11-20) version 3.34 (2016-11-20)

View File

@@ -165,8 +165,9 @@ sub i_type {
my %i_type; my %i_type;
foreach my $if ( keys %$idx ) { foreach my $if ( keys %$idx ) {
$i_type{$if} =
$i_type{$if} = 'ethernetCsmacd'; ((exists $f5->{sess}->{UseEnums} and $f5->{sess}->{UseEnums})
? 'ethernetCsmacd' : 6 );
} }
return \%i_type; return \%i_type;
} }