EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 312e783c authored by Karl Grube's avatar Karl Grube
Browse files

nat support working

parent 33dfbfcb
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,9 @@ router bgp {{bgp_asn}}
!
address-family ipv6 unicast
network ::/0
neighbor nat activate
neighbor nat prefix-list internet out
neighbor nat prefix-list none in
neighbor firewalls activate
neighbor firewalls prefix-list all out
neighbor firewalls prefix-list my-networks in
......@@ -81,6 +84,7 @@ router bgp {{bgp_asn}}
{% endfor %}
{% endfor %}
!
ipv6 prefix-list none seq 10 deny any
{% if allow_default_ipv6 == True %}
ipv6 prefix-list internet seq 5 permit ::/0
{% endif %}
......@@ -137,6 +141,7 @@ ipv6 prefix-list my-networks seq {{(loop.index|int)*10+10}} deny any
{% endif %}
{% endfor %}
!
ip prefix-list none seq 10 deny any
{% if allow_default_ipv4 == True %}
ip prefix-list internet seq 5 permit 0.0.0.0/0
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment