Method: Cisco::RouterBgpAF#dampen_igp_metric
- Defined in:
- lib/cisco_node_utils/bgp_af.rb
#dampen_igp_metric ⇒ Object
dampen_igp_metric
172 173 174 175 176 177 178 179 |
# File 'lib/cisco_node_utils/bgp_af.rb', line 172 def dampen_igp_metric match = config_get('bgp_af', 'dampen_igp_metric', @get_args) if match.is_a?(Array) return nil if match[0] == 'no ' return match[1].to_i if match[1] end default_dampen_igp_metric end |