Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12427449
ipv6.sls
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
ipv6.sls
View Options
# -------------------------------------------------------------
# Salt — Network
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2016-06-15
# License: Trivial work, not eligible to copyright
# -------------------------------------------------------------
# -------------------------------------------------------------
# Table of contents
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#
# :: Native IPv6
# :: 4to6 tunnel
# :: Routes
#
# -------------------------------------------------------------
{%
from
"map.jinja"
import
dirs
with context
%}
{%
set
network
=
salt
[
'node.get'
](
'network'
)
%}
# -------------------------------------------------------------
# Native IPv6
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{%
if
salt
[
'node.has'
](
'network:ipv6_native'
)
%}
{%
for
interface_name
,
interface
in
network
[
"interfaces"
]
.items
()
%}
{%
if
"ipv6"
in
interface
%}
{%
if
"gateway"
in
interface
[
"ipv6"
]
%}
{%
set
ipv6_gateway
=
interface
[
"ipv6"
][
"gateway"
]
%}
{%
endif
%}
{%
if
grains
[
'os'
]
==
'FreeBSD'
%}
/etc/rc.conf.d/netif/ipv6_
{{
interface
[
'device'
]
}}
:
file.managed
:
-
source
:
salt://roles/core/network/files/FreeBSD/netif_ipv6.rc
-
makedirs
:
True
-
template
:
jinja
-
context
:
interface
:
{{
interface
[
'device'
]
}}
ipv6_address
:
{{
interface
[
'ipv6'
][
'address'
]
}}
ipv6_prefix
:
{{
interface
[
'ipv6'
][
'prefix'
]
|
default
(
64
)
}}
has_native_ipv6
:
True
{%
endif
%}
{%
endif
%}
{%
endfor
%}
{%
endif
%}
# -------------------------------------------------------------
# 4to6 tunnel
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{%
if
salt
[
'node.has'
](
'network:ipv6_tunnel'
)
%}
network_ipv6
:
file.managed
:
-
name
:
{{
dirs.sbin
}}
/ipv6-setup-tunnel
-
source
:
salt://roles/core/network/files/ipv6-tunnels/
{{
grains
[
'id'
]
}}
.sh.jinja
-
template
:
jinja
-
mode
:
755
{%
endif
%}
# -------------------------------------------------------------
# Routes
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{%
if
"ipv6_gateway"
in
network
%}
{%
if
grains
[
'os'
]
==
'FreeBSD'
%}
/etc/rc.conf.d/routing/ipv6
:
file.managed
:
-
source
:
salt://roles/core/network/files/FreeBSD/routing_ipv6.rc
-
makedirs
:
True
-
template
:
jinja
-
context
:
ipv6_gateway
:
{{
network
[
"ipv6_gateway"
]
}}
{%
endif
%}
{%
endif
%}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 7, 08:40 (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3136552
Default Alt Text
ipv6.sls (2 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment