Skip to content
Snippets Groups Projects
Commit 05403e33 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

Merge branch 'feature/nat-622-ttl-expired' into 'develop'

Feature/nat 622 ttl expired

See merge request !155
parents e2137e7b 7a9cd490
No related branches found
No related tags found
1 merge request!155Feature/nat 622 ttl expired
Pipeline #88016 passed
# GAP Ansible changelog # GAP Ansible changelog
1.0.80:
- Added ICMP TTL-expired config in interface template (NAT-622)
1.0.79: 1.0.79:
- Added SSH `inbound-max-session` to the base_config. - Added SSH `inbound-max-session` to the base_config.
1.0.78: 1.0.78:
...@@ -7,7 +9,7 @@ ...@@ -7,7 +9,7 @@
- Cleanup of `iptrunk` templates. - Cleanup of `iptrunk` templates.
1.0.77: 1.0.77:
- `iptrunk_migration`: if trunk is `Leased`, update the target BFD address (LO of the new node) after migration and check the BFD status. - `iptrunk_migration`: if trunk is `Leased`, update the target BFD address (LO of the new node) after migration and check the BFD status.
- `iptrunk_checks`: added LLDP check - simpple `show lldp neighbors`. - `iptrunk_checks`: added LLDP check - simple `show lldp neighbors`.
- `iptrunk_checks`: updated parser for Nokia optical port output. - `iptrunk_checks`: updated parser for Nokia optical port output.
1.0.76: 1.0.76:
- fixes in `iptrunk_migration` role (BFD, min-links, corrected interface descriptions) - fixes in `iptrunk_migration` role (BFD, min-links, corrected interface descriptions)
......
...@@ -8,7 +8,7 @@ namespace: geant ...@@ -8,7 +8,7 @@ namespace: geant
name: gap_ansible name: gap_ansible
# The version of the collection. Must be compatible with semantic versioning # The version of the collection. Must be compatible with semantic versioning
version: 1.0.79 version: 1.0.80
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md readme: README.md
......
...@@ -100,6 +100,13 @@ ...@@ -100,6 +100,13 @@
<ip-mtu>{{ mtu_ip }}</ip-mtu> <ip-mtu>{{ mtu_ip }}</ip-mtu>
<port>{{ local.ae_name | lower }}</port> <port>{{ local.ae_name | lower }}</port>
<ipv4> <ipv4>
<icmp>
<ttl-expired>
<admin-state>enable</admin-state>
<number>{{ icmp_ttl_expired.number }}</number>
<seconds>{{ icmp_ttl_expired.seconds }}</seconds>
</ttl-expired>
</icmp>
<primary> <primary>
<address>{{(local.ipv4_address| split('/'))[0]}}</address> <address>{{(local.ipv4_address| split('/'))[0]}}</address>
<prefix-length>{{(local.ipv4_address| split('/'))[1]}}</prefix-length> <prefix-length>{{(local.ipv4_address| split('/'))[1]}}</prefix-length>
......
...@@ -31,6 +31,9 @@ side_b_ipv6_address: "{{ wfo_trunk.iptrunk.iptrunk_ipv6_network | ansible.utils. ...@@ -31,6 +31,9 @@ side_b_ipv6_address: "{{ wfo_trunk.iptrunk.iptrunk_ipv6_network | ansible.utils.
bfd_min_interval: 3000 bfd_min_interval: 3000
mtu_phy: 9212 mtu_phy: 9212
mtu_ip: 9000 mtu_ip: 9000
icmp_ttl_expired:
number: 2000
seconds: 5
trunks: trunks:
- id: "{{ wfo_trunk.iptrunk.geant_s_sid }}" - id: "{{ wfo_trunk.iptrunk.geant_s_sid }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment