-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathipv6.xml
110 lines (66 loc) · 3.6 KB
/
ipv6.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
Created by Manifold
--><service_bundle type="manifest" name="ipv6">
<service name="network/ipv6" type="service" version="1.1">
<dependency name="network" grouping="require_all" restart_on="error" type="service">
<service_fmri value="svc:/milestone/network:default"/>
</dependency>
<dependency name="filesystem" grouping="require_all" restart_on="error" type="service">
<service_fmri value="svc:/system/filesystem/local"/>
</dependency>
<dependency name="ndp" grouping="optional_all" restart_on="none" type="service">
<service_fmri value="svc:/network/routing/ndp:default"/>
</dependency>
<instance name="addrconf" enabled="true">
<method_context>
</method_context>
<exec_method type="method" name="start" exec="/opt/custom/smf/ipv6-addrconf start" timeout_seconds="60"/>
<exec_method type="method" name="stop" exec="/opt/custom/smf/ipv6-addrconf stop" timeout_seconds="60"/>
<property_group name="startd" type="framework">
<propval name="duration" type="astring" value="transient"/>
<propval name="ignore_error" type="astring" value="core,signal"/>
</property_group>
<property_group name="application" type="application">
</property_group>
</instance>
<instance name="static" enabled="false">
<dependency name="ndp" grouping="require_all" restart_on="none" type="service">
<service_fmri value="svc:/network/ipv6:addrconf"/>
</dependency>
<method_context>
</method_context>
<exec_method type="method" name="start" exec="/opt/custom/smf/ipv6-static -c %{config_file} start" timeout_seconds="60"/>
<exec_method type="method" name="stop" exec="/opt/custom/smf/ipv6-static -c %{config_file} stop" timeout_seconds="60"/>
<property_group name="startd" type="framework">
<propval name="duration" type="astring" value="transient"/>
<propval name="ignore_error" type="astring" value="core,signal"/>
</property_group>
<property_group name="application" type="application">
<propval name="config_file" type="astring" value="/opt/custom/smf/ipv6-static.conf"/>
</property_group>
</instance>
<instance name="tunnel" enabled="false">
<method_context>
</method_context>
<exec_method type="method" name="start" exec="/opt/custom/smf/ipv6-tunnel -c %{config_file} start" timeout_seconds="300"/>
<exec_method type="method" name="stop" exec="/opt/custom/smf/ipv6-tunnel -c %{config_file} stop" timeout_seconds="300"/>
<property_group name="startd" type="framework">
<propval name="duration" type="astring" value="transient"/>
<propval name="ignore_error" type="astring" value="core,signal"/>
</property_group>
<property_group name="application" type="application">
<propval name="config_file" type="astring" value="/opt/custom/smf/ipv6-tunnel.conf"/>
</property_group>
</instance>
<stability value="Evolving"/>
<template>
<common_name>
<loctext xml:lang="C">
IPv6 Address Configuration
</loctext>
</common_name>
</template>
</service>
</service_bundle>