Newer
Older
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
/*
* @author STF 276
* @version $Id$
* @desc - Here all module parameters from every RFC shall be collected.
*
*/
module LibIpv6_ModuleParameters {
//LibCommon
import from LibCommon_DataStrings all;
import from LibCommon_BasicTypesAndValues all;
import from LibCommon_TextStrings all;
//LibIpv6
import from LibIpv6_MultiRfcs_TypesAndValues all ;
group macLayer {
/*
** @desc PICS/PIXIT Reference: XXX
*/
modulepar {MacLayer PX_MAC_LAYER := e_eth}
/*
** @remark Length is specified in units of 8 octets including type+length field
*/
modulepar {UInt8 PX_MAC_OPTION_LEN := 1}
modulepar {String1to255 PX_NET_DEVICE_ID_1 := "eth1"}
modulepar {String1to255 PX_NET_DEVICE_ID_2 := "eth2"}
modulepar {UInt8 PX_PREFIX_LENGTH := 64}
} //end macLayer
group HS_01 {
modulepar {Oct6to15 PX_MAC_UCA_HS01 := '00000000A5A5'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_HS01 := '3333FF00A5A5'O}
modulepar {Ipv6Address PX_LLA_HS01 := 'FE80000000000000000000FFFE00A5A5'O}
modulepar {Ipv6Address PX_GLA_HS01 := '200106605503276A000000FFFE00A5A5'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_HS01 := 'FF0200000000000000000001FF00A5A5'O}
}//end group HS_01
group HS_02 {
modulepar {Oct6to15 PX_MAC_UCA_HS02 := '00000000B6B6'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_HS02 := '3333FF00B6B6'O}
modulepar {Ipv6Address PX_LLA_HS02 := 'FE80000000000000000000FFFE00B6B6'O}
modulepar {Ipv6Address PX_GLA_HS02 := '200106605503276B000000FFFE00B6B6'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_HS02 := 'FF0200000000000000000001FF00B6B6'O}
}//end group HS_02
group HS_03 {
modulepar {Oct6to15 PX_MAC_UCA_HS03 := '00000000C7C7'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_HS03 := '3333FF00C7C7'O}
modulepar {Ipv6Address PX_LLA_HS03 := 'FE80000000000000000000FFFE00C7C7'O}
modulepar {Ipv6Address PX_GLA_HS03 := '200106605503276C000000FFFE00C7C7'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_HS03 := 'FF0200000000000000000001FF00C7C7'O}
}//end group HS_03
group RT_01 {
modulepar {Oct6to15 PX_MAC_UCA_RT01_A := '00000000A1A1'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RT01_A := '3333FF00A1A1'O}
modulepar {Ipv6Address PX_LLA_RT01_A := 'FE80000000000000000000FFFE00A1A1'O}
modulepar {Ipv6Address PX_GLA_RT01_A := '200106605503276A000000FFFE00A1A1'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_RT01_A := 'FF0200000000000000000001FF00A1A1'O}
modulepar {Oct6to15 PX_MAC_UCA_RT01_B := '00000000B1B1'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RT01_B := '3333FF00B1B1'O}
modulepar {Ipv6Address PX_LLA_RT01_B := 'FE80000000000000000000FFFE00B1B1'O}
modulepar {Ipv6Address PX_GLA_RT01_B := '200106605503276B000000FFFE00B1B1'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_RT01_B := 'FF0200000000000000000001FF00B1B1'O}
}//end group RT_01
modulepar {Oct6to15 PX_MAC_UCA_RT03_A := '00000000A3A3'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RT03_A := '3333FF00A3A3'O}
modulepar {Ipv6Address PX_LLA_RT03_A := 'FE80000000000000000000FFFE00A3A3'O}
modulepar {Ipv6Address PX_GLA_RT03_A := '200106605503276A000000FFFE00A3A3'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_RT03_A := 'FF0200000000000000000001FF00A3A3'O}
modulepar {Oct6to15 PX_MAC_UCA_RT03_C := '00000000C3C3'O}
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RT03_C := '3333FF00C3C3'O}
modulepar {Ipv6Address PX_LLA_RT03_C := 'FE80000000000000000000FFFE00C3C3'O}
modulepar {Ipv6Address PX_GLA_RT03_C := '200106605503276C000000FFFE00C3C3'O}
modulepar {Ipv6Address PX_SOL_NODE_MCA_RT03_C := 'FF0200000000000000000001FF00C3C3'O}
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
group HUT {
/*
** @desc Link Local Address of Host Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_LLA_HUT := 'FE80000000000000ACACACFFFE276A31'O}
/*
** @desc Unicast Mac Address of Host Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_UCA_HUT := 'AEACAC276A31'O}
/*
** @desc Global Address of Host Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_GLA_HUT := '200106605503276AACACACFFFE276A31'O}
/*
** @desc Solicited-Node Multicast Address of Host Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_SOL_NODE_MCA_HUT := 'FF0200000000000000000001FF276A31'O}
/*
** @desc Mac Solicited-Node Multicast Address of Host Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_HUT := '3333FF276A31'O}
}//end HUT
group RUT {
/*
** @desc Link Local Address of Router Under Test sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_LLA_RUT_A := 'FE80000000000000ACACACFFFE276A41'O}
/*
** @desc Global Local Address of Router Under Test sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_GLA_RUT_A := '200106605503276A0000000000000004'O}
/*
** @desc Unicast Mac Address of Router Under Test sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_UCA_RUT_A := 'AEACAC276A41'O}
/*
** @desc Solicited-Node Multicast Address of Router Under Test sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_SOL_NODE_MCA_RUT_A := 'FF0200000000000000000001FF276A41'O}
/*
** @desc Mac Solicited-Node Multicast Address Router Under Test sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RUT_A := '3333FF276A41'O}
/*
** @desc Link Local Address of Router Under Test sending in netB<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_LLA_RUT_B := 'FE80000000000000ACACACFFFE276B42'O}
/*
** @desc Global Local Address of Router Under Test sending in netB<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_GLA_RUT_B := '200106605503276B0000000000000004'O}
/*
** @desc Unicast Mac Address of Router Under Test sending in netB<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_UCA_RUT_B := 'AEACAC276B42'O}
/*
** @desc Solicited-Node Multicast Address of 1. router test
** component sending in netA<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_SOL_NODE_MCA_RUT_B := 'FF0200000000000000000001FF276B42'O}
/*
** @desc Mac Solicited-Node Multicast Address of Router Under Test sending in netB<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_RUT_B := '3333FF276B42'O}
/*
** @desc Anycast Address of Router Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_ACA}
/*
** @desc Mac Anycast Address of Router Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_ACA}
}//end group RUT
group NUT {
/*
** @desc Link Local Address of Node Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_LLA_NUT := 'FE80000000000000ACACACFFFE276A31'O}
/*
** @desc Unicast Mac Address of Node Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_UCA_NUT := 'AEACAC276A31'O}
/*
** @desc Global Address of Node Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_GLA_NUT := '200106605503276AACACACFFFE276A31'O}
/*
** @desc Solicited-Node Multicast Address of Node Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Ipv6Address PX_SOL_NODE_MCA_NUT := 'FF0200000000000000000001FF276A31'O}
/*
** @desc Mac Solicited-Node Multicast Address of Node Under Test<br>
** PICS/PIXIT Reference: XXX
*/
modulepar {Oct6to15 PX_MAC_SOL_NODE_MCA_NUT := '3333FF276A31'O}
}//end NUT
} // end module LibIpv6_ModuleParameters