diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-05 13:15:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 13:15:43 +0100 |
commit | e64b4ad6909bedad8aa72c25b0c0615e4f4046f9 (patch) | |
tree | 98f7d07e6fe357249807d44fbc5235c90c016762 /src | |
parent | 84c7ed21629db338b207dfb11320b49fffda3b3d (diff) | |
parent | f0ba15aadbfca4ecb7f438a8f92f634e333b7976 (diff) | |
download | vyos-1x-e64b4ad6909bedad8aa72c25b0c0615e4f4046f9.tar.gz vyos-1x-e64b4ad6909bedad8aa72c25b0c0615e4f4046f9.zip |
Merge pull request #596 from Cheeze-It/current
mpls-conf: T915: Add session hold time adjustment for LDP neighbors
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/protocols_mpls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_mpls.py b/src/conf_mode/protocols_mpls.py index d90c208ad..177fd265c 100755 --- a/src/conf_mode/protocols_mpls.py +++ b/src/conf_mode/protocols_mpls.py @@ -163,6 +163,7 @@ def get_config(config=None): neighbor : { 'password' : conf.return_effective_value('neighbor {0} password'.format(neighbor), default=''), 'ttl_security' : conf.return_effective_value('neighbor {0} ttl-security'.format(neighbor), default=''), + 'session_holdtime' : conf.return_effective_value('neighbor {0} session-holdtime'.format(neighbor), default='') } }) @@ -171,6 +172,7 @@ def get_config(config=None): neighbor : { 'password' : conf.return_value('neighbor {0} password'.format(neighbor), default=''), 'ttl_security' : conf.return_value('neighbor {0} ttl-security'.format(neighbor), default=''), + 'session_holdtime' : conf.return_value('neighbor {0} session-holdtime'.format(neighbor), default='') } }) @@ -243,4 +245,4 @@ if __name__ == '__main__': apply(c) except ConfigError as e: print(e) - exit(1) + exit(1)
\ No newline at end of file |