Commit | Line | Data |
---|---|---|
3fb336f6 DO |
1 | <?php |
2 | ||
ca3d68bd | 3 | function reloadDictionary ($release = NULL) |
3fb336f6 | 4 | { |
ca3d68bd DO |
5 | global $dictionary, $max_dict_key; |
6 | if ($release === NULL) | |
7 | $maxkey = max (array_keys ($dictionary)); | |
8 | else | |
9 | $maxkey = $max_dict_key[$release]; | |
10 | // Not only update existing stuff, but make sure all obsolete records are gone. | |
11 | $ret = array ("DELETE FROM Dictionary WHERE dict_key BETWEEN 1 AND ${maxkey}"); | |
12 | for ($i = 1; $i <= $maxkey; $i++) | |
13 | { | |
14 | if (!array_key_exists ($i, $dictionary)) | |
15 | continue; | |
16 | $chapter_id = $dictionary[$i]['chapter_id']; | |
17 | $dict_value = $dictionary[$i]['dict_value']; | |
18 | $ret[] = "INSERT INTO Dictionary (dict_key, chapter_id, dict_value) VALUES (" . | |
19 | "${i}, ${chapter_id}, '${dict_value}')"; | |
20 | } | |
3fb336f6 DO |
21 | return $ret; |
22 | } | |
23 | ||
cf50a8a2 | 24 | function isInnoDBSupported () |
4d61c752 DO |
25 | { |
26 | global $dbxlink; | |
4d61c752 DO |
27 | // create a temp table |
28 | $dbxlink->query("CREATE TABLE `innodb_test` (`id` int) ENGINE=InnoDB"); | |
971619ad | 29 | $row = $dbxlink->query("SHOW TABLE STATUS LIKE 'innodb_test'")->fetch(PDO::FETCH_ASSOC); |
4d61c752 | 30 | $dbxlink->query("DROP TABLE `innodb_test`"); |
971619ad | 31 | if ($row['Engine'] == 'InnoDB') |
4d61c752 DO |
32 | return TRUE; |
33 | ||
34 | return FALSE; | |
35 | } | |
36 | ||
964b0388 | 37 | function platform_function_test ($funcname, $extname, $what_if_not = 'not found', $error_class = 'trerror') |
4d61c752 DO |
38 | { |
39 | return platform_generic_test (function_exists ($funcname), $extname, 'NOT PRESENT', $error_class); | |
40 | } | |
41 | ||
5f016d39 | 42 | function platform_generic_test ($is_ok, $topic, $what_if_not = 'FAILED', $error_class = 'trerror') |
4d61c752 | 43 | { |
5f016d39 | 44 | echo "<tr><th class=tdleft>${topic}</th>"; |
4d61c752 DO |
45 | if ($is_ok) |
46 | { | |
5f016d39 | 47 | echo '<td class="trok tdleft">PASSED</td></tr>'; |
4d61c752 DO |
48 | return 0; |
49 | } | |
5f016d39 | 50 | echo "<td class='${error_class} tdleft'>${what_if_not}</td></tr>"; |
4d61c752 DO |
51 | return 1; |
52 | } | |
53 | ||
54 | function pcre8_with_properties() | |
55 | { | |
56 | return FALSE === @preg_match ('/\p{L}/u', 'a') ? FALSE : TRUE; | |
57 | } | |
58 | ||
59 | // Check for PHP extensions. | |
60 | function platform_is_ok () | |
61 | { | |
62 | $nerrs = 0; | |
5f016d39 | 63 | echo "<table border=1 cellpadding=5>\n"; |
4d61c752 | 64 | $nerrs += platform_generic_test (class_exists ('PDO'), 'PDO extension'); |
1e203519 | 65 | $nerrs += platform_generic_test (in_array ('pdo_mysql', get_loaded_extensions()), 'PDO-MySQL extension'); |
4d61c752 | 66 | $nerrs += platform_function_test ('preg_match', 'PCRE extension'); |
5f016d39 DO |
67 | $nerrs += platform_generic_test (pcre8_with_properties(), 'PCRE compiled with<br>--enable-unicode-properties'); |
68 | platform_function_test ('snmpwalk', 'SNMP extension', 'Not found, Live SNMP feature will not work.', 'trwarning'); | |
4d61c752 DO |
69 | $nerrs += platform_function_test ('gd_info', 'GD extension'); |
70 | $nerrs += platform_function_test ('mb_strlen', 'Multibyte string extension'); | |
5f016d39 | 71 | platform_function_test ('ldap_connect', 'LDAP extension', 'Not found, LDAP authentication will not work.', 'trwarning'); |
895774cf | 72 | platform_function_test ('pcntl_waitpid', 'PCNTL extension', '802.1Q parallel sync is unavailable.', 'trwarning'); |
9fb6900d | 73 | $nerrs += platform_function_test ('json_encode', 'JSON extension', 'JavaScript interface bits may fail.'); |
4d61c752 DO |
74 | platform_generic_test |
75 | ( | |
76 | (!empty($_SERVER['HTTPS']) and $_SERVER['HTTPS'] != 'off'), | |
77 | 'accessed over HTTPS', | |
78 | 'No! (all your passwords will be transmitted in cleartext)', | |
5f016d39 | 79 | 'trwarning' |
4d61c752 DO |
80 | ); |
81 | echo "</table>\n"; | |
82 | return !$nerrs; | |
83 | } | |
84 | ||
3fb336f6 DO |
85 | $dictionary = array |
86 | ( | |
87 | 1 => array ('chapter_id' => 1, 'dict_value' => 'BlackBox'), | |
88 | 2 => array ('chapter_id' => 1, 'dict_value' => 'PDU'), | |
89 | 3 => array ('chapter_id' => 1, 'dict_value' => 'Shelf'), | |
90 | 4 => array ('chapter_id' => 1, 'dict_value' => 'Server'), | |
91 | 5 => array ('chapter_id' => 1, 'dict_value' => 'DiskArray'), | |
92 | 6 => array ('chapter_id' => 1, 'dict_value' => 'TapeLibrary'), | |
93 | 7 => array ('chapter_id' => 1, 'dict_value' => 'Router'), | |
94 | 8 => array ('chapter_id' => 1, 'dict_value' => 'Network switch'), | |
95 | 9 => array ('chapter_id' => 1, 'dict_value' => 'PatchPanel'), | |
96 | 10 => array ('chapter_id' => 1, 'dict_value' => 'CableOrganizer'), | |
97 | 11 => array ('chapter_id' => 1, 'dict_value' => 'spacer'), | |
98 | 12 => array ('chapter_id' => 1, 'dict_value' => 'UPS'), | |
99 | 13 => array ('chapter_id' => 1, 'dict_value' => 'Modem'), | |
100 | 14 => array ('chapter_id' => 1, 'dict_value' => 'MediaConverter'), | |
101 | 15 => array ('chapter_id' => 1, 'dict_value' => 'console'), | |
1b3abcdc | 102 | 16 => array ('chapter_id' => 2, 'dict_value' => 'AC-in'), |
d9b88ea0 DO |
103 | 17 => array ('chapter_id' => 2, 'dict_value' => '10Base2'), |
104 | 18 => array ('chapter_id' => 2, 'dict_value' => '10Base-T'), | |
105 | 19 => array ('chapter_id' => 2, 'dict_value' => '100Base-TX'), | |
106 | 20 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (SC)'), | |
107 | 21 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (LC)'), | |
108 | 22 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX (SC)'), | |
109 | 23 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX (LC)'), | |
110 | 24 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T'), | |
111 | 25 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX (SC)'), | |
112 | 26 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX (LC)'), | |
113 | 27 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX (SC)'), | |
114 | 28 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX (LC)'), | |
115 | 29 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (RJ-45)'), | |
116 | 30 => array ('chapter_id' => 2, 'dict_value' => '10GBase-SR'), | |
fc8e1110 | 117 | 31 => array ('chapter_id' => 2, 'dict_value' => 'virtual bridge'), |
3fb336f6 DO |
118 | 32 => array ('chapter_id' => 2, 'dict_value' => 'sync serial'), |
119 | 33 => array ('chapter_id' => 2, 'dict_value' => 'KVM (host)'), | |
d9b88ea0 DO |
120 | 34 => array ('chapter_id' => 2, 'dict_value' => '1000Base-ZX'), |
121 | 35 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ER'), | |
122 | 36 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LR'), | |
123 | 37 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LRM'), | |
124 | 38 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR'), | |
125 | 39 => array ('chapter_id' => 2, 'dict_value' => '10GBase-LX4'), | |
126 | 40 => array ('chapter_id' => 2, 'dict_value' => '10GBase-CX4'), | |
127 | 41 => array ('chapter_id' => 2, 'dict_value' => '10GBase-Kx'), | |
3fb336f6 DO |
128 | 42 => array ('chapter_id' => 11, 'dict_value' => 'noname/unknown'), |
129 | 43 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%305'), | |
130 | 44 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%306'), | |
131 | 45 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%306m'), | |
132 | 46 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%326m'), | |
133 | 47 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%330'), | |
134 | 48 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%335'), | |
135 | 49 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Ultra 10'), | |
136 | 50 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Enterprise 420R'), | |
137 | 51 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2100 | http://www.sun.com/servers/entry/x2100/]]'), | |
138 | 52 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire E4900 | http://www.sun.com/servers/midrange/sunfire_e4900/index.xml]]'), | |
139 | 53 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Netra X1'), | |
140 | 54 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%346'), | |
141 | 55 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1650'), | |
142 | 56 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2850'), | |
143 | 57 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V210'), | |
144 | 58 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V240'), | |
145 | 59 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%326'), | |
146 | 60 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Netra t1 105'), | |
147 | 61 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Enterprise 4500'), | |
148 | 62 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1950'), | |
149 | 63 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1550'), | |
150 | 64 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Ultra 5'), | |
151 | 65 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2950'), | |
152 | 66 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%650'), | |
153 | 67 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%4600'), | |
154 | 68 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3250'), | |
155 | 69 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3455'), | |
156 | 70 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3550'), | |
157 | 71 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3650'), | |
158 | 72 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3655'), | |
159 | 73 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3650 T'), | |
160 | 74 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3755'), | |
161 | 75 => array ('chapter_id' => 11, 'dict_value' => 'IBM xSeries%GPASS%3850'), | |
162 | 76 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4600 | http://www.sun.com/servers/x64/x4600/]]'), | |
163 | 77 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4500 | http://www.sun.com/servers/x64/x4500/]]'), | |
164 | 78 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4200 | http://www.sun.com/servers/entry/x4200/]]'), | |
165 | 79 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X4100 | http://www.sun.com/servers/entry/x4100/]]'), | |
166 | 80 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2100 M2 | http://www.sun.com/servers/entry/x2100/]]'), | |
167 | 81 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire X2200 M2 | http://www.sun.com/servers/x64/x2200/]]'), | |
168 | 82 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V40z'), | |
169 | 83 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V125'), | |
170 | 84 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V215 | http://www.sun.com/servers/entry/v215/]]'), | |
171 | 85 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V245 | http://www.sun.com/servers/entry/v245/]]'), | |
172 | 86 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V445 | http://www.sun.com/servers/entry/v445/]]'), | |
173 | 87 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V440'), | |
174 | 88 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V490 | http://www.sun.com/servers/midrange/v490/]]'), | |
175 | 89 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire V890 | http://www.sun.com/servers/midrange/v890/]]'), | |
176 | 90 => array ('chapter_id' => 11, 'dict_value' => '[[Sun%GPASS%Fire E2900 | http://www.sun.com/servers/midrange/sunfire_e2900/index.xml]]'), | |
177 | 91 => array ('chapter_id' => 11, 'dict_value' => 'Sun%GPASS%Fire V1280'), | |
178 | 92 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%185'), | |
179 | 93 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%505'), | |
180 | 94 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%505Q'), | |
181 | 95 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%510'), | |
182 | 96 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%510Q'), | |
183 | 97 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%520'), | |
184 | 98 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%520Q'), | |
185 | 99 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%550'), | |
186 | 100 => array ('chapter_id' => 11, 'dict_value' => 'IBM pSeries%GPASS%550Q'), | |
187 | 101 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL140 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-1842838.html]]'), | |
188 | 102 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL145 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3219755.html]]'), | |
189 | 103 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3201178.html]]'), | |
190 | 104 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL360 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-1121486.html]]'), | |
191 | 105 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL380 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-1121516.html]]'), | |
192 | 106 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL385 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3219233.html]]'), | |
193 | 107 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL580 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328422-3454575.html]]'), | |
194 | 108 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL585 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328422-3219717.html]]'), | |
195 | 109 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML110 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3577708.html]]'), | |
196 | 110 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML150 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3580609.html]]'), | |
197 | 111 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML310 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-3580655.html]]'), | |
198 | 112 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML350 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-1121586.html]]'), | |
199 | 113 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML370 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-241477-1121474.html]]'), | |
200 | 114 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML570 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328425-1842779.html]]'), | |
201 | 115 => array ('chapter_id' => 12, 'dict_value' => 'noname/unknown'), | |
202 | 116 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron WorkGroup'), | |
203 | 117 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron II'), | |
204 | 118 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron'), | |
205 | 119 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron XL'), | |
206 | 120 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 350'), | |
207 | 121 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402'), | |
208 | 122 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802'), | |
209 | 123 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424'), | |
210 | 124 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2924XL'), | |
211 | 125 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SuperX'), | |
212 | 126 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2912XL'), | |
213 | 127 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 648P'), | |
214 | 128 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402-PREM'), | |
215 | 129 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624P'), | |
216 | 130 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624P-POE'), | |
217 | 131 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 648P-POE'), | |
218 | 132 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 4G'), | |
219 | 133 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 4G-SSL'), | |
220 | 134 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X448'), | |
221 | 135 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424HF'), | |
222 | 136 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge X424-POE'), | |
223 | 137 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SX 800'), | |
224 | 138 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron SX 1600'), | |
225 | 139 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-8PC'), | |
226 | 140 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-48TC'), | |
227 | 141 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-E'), | |
228 | 142 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24LC'), | |
229 | 143 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24TS'), | |
230 | 144 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-E'), | |
231 | 145 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4503'), | |
232 | 146 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 6513'), | |
fbcbb4ee | 233 | 147 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4948 | http://www.cisco.com/en/US/products/ps6026/index.html]]'), |
0682218d AD |
234 | 148 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-E'), |
235 | 149 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-NEB-A'), | |
236 | 150 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6506-E'), | |
237 | 151 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6504-E'), | |
238 | 152 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6503-E'), | |
239 | 153 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6503'), | |
240 | 154 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6506'), | |
241 | 155 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6509-NEB'), | |
242 | 156 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 4506'), | |
243 | 157 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 4507R'), | |
244 | 158 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 4510R'), | |
3fb336f6 DO |
245 | 159 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24PC'), |
246 | 160 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500-24TT'), | |
247 | 161 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst Express 500G-12TC'), | |
248 | 162 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-48TT'), | |
249 | 163 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24TC'), | |
250 | 164 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24TT'), | |
251 | 165 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-8TC'), | |
252 | 166 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-48TC'), | |
253 | 167 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-24TC'), | |
254 | 168 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-8TC'), | |
255 | 169 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-24TS'), | |
256 | 170 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-48TS'), | |
257 | 171 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-24PS'), | |
258 | 172 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560-48PS'), | |
259 | 173 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-24TS'), | |
260 | 174 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-48TS'), | |
261 | 175 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-24PS'), | |
262 | 176 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3560G-48PS'), | |
263 | 177 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-48TS'), | |
264 | 178 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24PS'), | |
265 | 179 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-48PS'), | |
266 | 180 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24FS'), | |
267 | 181 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24T'), | |
268 | 182 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24TS'), | |
269 | 183 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24TS-1U'), | |
270 | 184 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-48TS'), | |
271 | 185 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24PS'), | |
272 | 186 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-48PS'), | |
273 | 187 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-16TD'), | |
274 | 188 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-12S'), | |
275 | 189 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750G-24WS'), | |
276 | 190 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 2402CF'), | |
277 | 191 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 24G'), | |
278 | 192 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 4802CF'), | |
279 | 193 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 48G'), | |
280 | 194 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 24GS'), | |
281 | 195 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 48GS'), | |
282 | 196 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%EdgeIron 8X10G'), | |
283 | 197 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802-PREM'), | |
284 | 198 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 12GCF'), | |
285 | 199 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 12GCF-PREM'), | |
286 | 200 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 9604'), | |
287 | 201 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 9604-PREM'), | |
288 | 202 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 2402-POE'), | |
289 | 203 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Edge 4802-POE'), | |
290 | 204 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Workgroup X424'), | |
291 | 205 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron Workgroup X448'), | |
292 | 206 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 450'), | |
293 | 207 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron 850'), | |
294 | 208 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron GT C'), | |
295 | 209 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%ServerIron GT E'), | |
296 | 210 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 2970G-24T | http://www.cisco.com/en/US/products/hw/switches/ps5206/ps5313/index.html]]'), | |
297 | 211 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 2970G-24TS | http://www.cisco.com/en/US/products/hw/switches/ps5206/ps5437/index.html]]'), | |
ad9da675 DO |
298 | 212 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C1'), |
299 | 213 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C2'), | |
300 | 214 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C3'), | |
301 | 215 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C4'), | |
302 | 216 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C5'), | |
303 | 217 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora C6'), | |
3fb336f6 DO |
304 | 218 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 8'), |
305 | 219 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 9'), | |
306 | 220 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%Solaris 10'), | |
307 | 221 => array ('chapter_id' => 13, 'dict_value' => 'Windows 2000'), | |
308 | 222 => array ('chapter_id' => 13, 'dict_value' => 'Windows XP'), | |
309 | 223 => array ('chapter_id' => 13, 'dict_value' => 'Windows 2003'), | |
310 | 224 => array ('chapter_id' => 13, 'dict_value' => 'Windows Vista'), | |
311 | 225 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL1'), | |
312 | 226 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL2'), | |
313 | 227 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL3'), | |
314 | 228 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL4'), | |
315 | 229 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.0'), | |
316 | 230 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.2'), | |
317 | 231 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 2.4'), | |
ad9da675 | 318 | 232 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 7'), |
3fb336f6 DO |
319 | 233 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%SLES10'), |
320 | 234 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 3.0 (woody) | http://debian.org/releases/woody/]]'), | |
321 | 235 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 3.1 (sarge) | http://debian.org/releases/sarge/]]'), | |
322 | 236 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 1.x'), | |
323 | 237 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 2.x'), | |
324 | 238 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 3.x'), | |
325 | 239 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 4.x'), | |
326 | 240 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 5.x'), | |
327 | 241 => array ('chapter_id' => 13, 'dict_value' => 'BSD%GSKIP%FreeBSD 6.x'), | |
ad9da675 | 328 | 242 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 8'), |
3fb336f6 DO |
329 | 243 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Master 4.0'), |
330 | 244 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.0'), | |
331 | 245 => array ('chapter_id' => 14, 'dict_value' => 'Foundry SLB'), | |
332 | 246 => array ('chapter_id' => 14, 'dict_value' => 'Foundry WXM'), | |
333 | 247 => array ('chapter_id' => 14, 'dict_value' => 'Foundry L2'), | |
334 | 248 => array ('chapter_id' => 14, 'dict_value' => 'Foundry full L3'), | |
335 | 249 => array ('chapter_id' => 14, 'dict_value' => 'Foundry basic L3'), | |
336 | 250 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 11.2'), | |
337 | 251 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.1'), | |
338 | 252 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 12.2'), | |
339 | 253 => array ('chapter_id' => 14, 'dict_value' => 'Cisco IOS 11.3'), | |
340 | 254 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.0'), | |
341 | 255 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.1'), | |
342 | 256 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.2'), | |
343 | 257 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.3'), | |
344 | 258 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 12.4'), | |
345 | 259 => array ('chapter_id' => 16, 'dict_value' => 'Foundry L3'), | |
346 | 260 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 11.2'), | |
347 | 261 => array ('chapter_id' => 16, 'dict_value' => 'Cisco IOS 11.3'), | |
348 | 262 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 4000'), | |
349 | 263 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7609'), | |
350 | 264 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2610XM'), | |
351 | 265 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2611XM'), | |
352 | 266 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3620'), | |
353 | 267 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3640'), | |
354 | 268 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2621XM'), | |
355 | 269 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7206VXR'), | |
356 | 270 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2651XM'), | |
357 | 271 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7204VXR'), | |
358 | 272 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2612'), | |
359 | 273 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2620XM'), | |
360 | 274 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2650XM'), | |
361 | 275 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2691'), | |
362 | 276 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7603'), | |
363 | 277 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7606'), | |
364 | 278 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7613'), | |
365 | 279 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2801'), | |
366 | 280 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2811'), | |
367 | 281 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2821'), | |
368 | 282 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%2851'), | |
369 | 283 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3725'), | |
370 | 284 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3745'), | |
371 | 285 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3825'), | |
372 | 286 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%3845'), | |
373 | 287 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 100 | http://www.juniper.net/customers/support/products/netscreen100.jsp]]'), | |
374 | 288 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-4'), | |
375 | 289 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-8'), | |
376 | 290 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-16'), | |
377 | 291 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron MLX-32'), | |
378 | 292 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 4000'), | |
379 | 293 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 8000'), | |
380 | 294 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 16000'), | |
381 | 295 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%NetIron XMR 32000'), | |
382 | 296 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-4'), | |
383 | 297 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-8'), | |
384 | 298 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-16'), | |
385 | 299 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1841'), | |
386 | 300 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1812'), | |
387 | 301 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1811'), | |
388 | 302 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1803'), | |
389 | 303 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1802'), | |
390 | 304 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%1801'), | |
391 | 305 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7202'), | |
392 | 306 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7204'), | |
393 | 307 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7206'), | |
394 | 308 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%7604'), | |
395 | 309 => array ('chapter_id' => 17, 'dict_value' => 'Cisco%GPASS%OSR-7609'), | |
396 | 310 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 8000'), | |
397 | 311 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron 15000'), | |
398 | 312 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorEdge A1000'), | |
399 | 313 => array ('chapter_id' => 18, 'dict_value' => 'Dell/EMC AX150'), | |
400 | 314 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX600'), | |
401 | 315 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorEdge D240'), | |
402 | 316 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX300'), | |
403 | 317 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 6140'), | |
404 | 318 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3511'), | |
405 | 319 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3510'), | |
406 | 320 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3320'), | |
407 | 321 => array ('chapter_id' => 18, 'dict_value' => 'Sun StorageTek 3120'), | |
408 | 322 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault NX1950'), | |
409 | 323 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 220S'), | |
410 | 324 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault MD3000'), | |
411 | 325 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 136T'), | |
412 | 326 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek SL500'), | |
413 | 327 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek L1400'), | |
414 | 328 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek SL8500'), | |
415 | 329 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek C4'), | |
416 | 330 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault ML6000'), | |
417 | 331 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 132T'), | |
418 | 332 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault TL4000'), | |
419 | 333 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault TL2000'), | |
420 | 334 => array ('chapter_id' => 19, 'dict_value' => 'Dell PowerVault 124T'), | |
421 | 335 => array ('chapter_id' => 19, 'dict_value' => 'Sun StorageTek C2'), | |
422 | 338 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2216'), | |
423 | 339 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2224'), | |
424 | 340 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2324'), | |
425 | 341 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2708'), | |
426 | 342 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2716'), | |
427 | 343 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2724'), | |
428 | 344 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2748'), | |
429 | 345 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3424'), | |
430 | 346 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3424P'), | |
431 | 347 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3448'), | |
432 | 348 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3448P'), | |
433 | 349 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5324'), | |
434 | 350 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224'), | |
435 | 351 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224P'), | |
436 | 352 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6224F'), | |
437 | 353 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6248'), | |
438 | 354 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%6248P'), | |
439 | 355 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%6850'), | |
440 | 356 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%6950'), | |
441 | 357 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R900'), | |
442 | 358 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%4400'), | |
443 | 359 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2650'), | |
444 | 360 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2550'), | |
445 | 361 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%750'), | |
446 | 362 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2450'), | |
447 | 363 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%850'), | |
448 | 364 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%1850'), | |
449 | 365 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%860'), | |
450 | 366 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2900'), | |
451 | 367 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%2970'), | |
452 | 368 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%SC1435'), | |
0682218d | 453 | 369 => array ('chapter_id' => 30, 'dict_value' => 'Cisco%GPASS%Catalyst 6509'), |
3fb336f6 DO |
454 | 370 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 6524GS-8S'), |
455 | 371 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 6524GT-8S'), | |
456 | 372 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4503-E'), | |
457 | 373 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4506-E'), | |
458 | 374 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4507R-E'), | |
459 | 375 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 4510R-E'), | |
460 | 376 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3750-24TE-M'), | |
fbcbb4ee | 461 | 377 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4948-10GE | http://www.cisco.com/en/US/products/ps6230/index.html]]'), |
3fb336f6 DO |
462 | 378 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 4924-10GE'), |
463 | 379 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-24'), | |
464 | 380 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950-24'), | |
465 | 381 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950-12'), | |
466 | 382 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950C-24'), | |
467 | 383 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-24-DC'), | |
468 | 384 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950SX-48'), | |
469 | 385 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950SX-24'), | |
470 | 386 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950T-24'), | |
471 | 387 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950T-48'), | |
472 | 388 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-12'), | |
473 | 389 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-24'), | |
474 | 390 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2950G-48'), | |
475 | 391 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3508G XL'), | |
476 | 392 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3512 XL'), | |
477 | 393 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3524 XL'), | |
478 | 394 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3524 PWR XL'), | |
479 | 395 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3548 XL'), | |
480 | 396 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 2400-24TS-A'), | |
481 | 397 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 2400-24TS-D'), | |
482 | 398 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-12T'), | |
483 | 399 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-12G'), | |
484 | 400 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24'), | |
485 | 401 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 FX'), | |
486 | 402 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 DC'), | |
487 | 403 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-24 PWR'), | |
488 | 404 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 3550-48'), | |
489 | 405 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-12CS-A'), | |
490 | 406 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-12CS-D'), | |
491 | 407 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400G-2CS-A'), | |
492 | 408 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24TS-A'), | |
493 | 409 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24TS-D'), | |
494 | 410 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%ME 3400-24FS-A'), | |
495 | 411 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624XGP'), | |
496 | 412 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron GS 624XGP-POE'), | |
497 | 413 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron LS 624'), | |
498 | 414 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%FastIron LS 648'), | |
499 | 415 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%NetIron M2404F'), | |
500 | 416 => array ('chapter_id' => 12, 'dict_value' => 'Foundry%GPASS%NetIron M2404C'), | |
501 | 417 => array ('chapter_id' => 17, 'dict_value' => 'Foundry%GPASS%BigIron RX-32'), | |
502 | 418 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.0 (hamm) | http://debian.org/releases/hamm/]]'), | |
503 | 419 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.1 (slink) | http://debian.org/releases/slink/]]'), | |
504 | 420 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 2.2 (potato) | http://debian.org/releases/potato/]]'), | |
505 | 421 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 4.0 (etch) | http://debian.org/releases/etch/]]'), | |
506 | 422 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Server 4.0'), | |
507 | 423 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux Sisyphus'), | |
508 | 424 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.0'), | |
509 | 425 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.1'), | |
510 | 426 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.2'), | |
511 | 427 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%openSUSE 10.3'), | |
512 | 428 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 4.10'), | |
513 | 429 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 5.04'), | |
514 | 430 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 5.10'), | |
515 | 431 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 6.06 LTS'), | |
516 | 432 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 6.10'), | |
517 | 433 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 7.04'), | |
518 | 434 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 7.10'), | |
519 | 435 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 8.04 LTS'), | |
520 | 436 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL5'), | |
521 | 437 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 210S'), | |
522 | 438 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault 221S'), | |
523 | 439 => array ('chapter_id' => 2, 'dict_value' => 'dry contact'), | |
524 | 440 => array ('chapter_id' => 2, 'dict_value' => 'unknown'), | |
525 | 441 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-2'), | |
526 | 442 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-3'), | |
527 | 443 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-4'), | |
528 | 444 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%CentOS-5'), | |
529 | 445 => array ('chapter_id' => 1, 'dict_value' => 'KVM switch'), | |
530 | 446 => array ('chapter_id' => 2, 'dict_value' => 'KVM (console)'), | |
531 | 447 => array ('chapter_id' => 1, 'dict_value' => 'multiplexer'), | |
532 | 448 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1021 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2418]]'), | |
533 | 449 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1022 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2498]]'), | |
534 | 450 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1024 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2588]]'), | |
535 | 451 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1031 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2804]]'), | |
536 | 452 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2340]]'), | |
537 | 453 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2884]]'), | |
538 | 454 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR4020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3100]]'), | |
539 | 455 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3358]]'), | |
540 | 456 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR1030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2726]]'), | |
541 | 457 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2988]]'), | |
542 | 458 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR2035 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3050]]'), | |
543 | 459 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR4030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3196]]'), | |
544 | 460 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3472]]'), | |
545 | 461 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent DSR8035 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3580]]'), | |
546 | 462 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 1415 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1612]]'), | |
547 | 463 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 1515 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1736]]'), | |
548 | 464 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2015 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=1930]]'), | |
549 | 465 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2020 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2012]]'), | |
550 | 466 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 2030 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2114]]'), | |
551 | 467 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 3100 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2222]]'), | |
552 | 468 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent AutoView 3200 | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=2266]]'), | |
553 | 469 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 4-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=4016]]'), | |
554 | 470 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 8-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=4094]]'), | |
555 | 471 => array ('chapter_id' => 21, 'dict_value' => '[[Avocent SwitchView 1000 16-port | http://www.avocent.com/WorkArea/linkit.aspx?LinkIdentifier=id&ItemID=3934]]'), | |
556 | 472 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
557 | 473 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
558 | 474 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-4E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
559 | 475 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
560 | 476 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
561 | 477 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-8E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
562 | 478 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1 | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
563 | 479 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1/ETS | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
564 | 480 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/S-16E1/M | http://www.cronyx.ru/hardware/fmux-ring.html]]'), | |
565 | 481 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-XL/S | http://www.cronyx.ru/hardware/e1xl-s.html]]'), | |
566 | 482 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-DXC/S | http://www.cronyx.ru/hardware/e1dxc-s.html]]'), | |
567 | 483 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX-4-E2 | http://www.cronyx.ru/hardware/fmux4-e2.html]]'), | |
568 | 484 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX-16-E3 | http://www.cronyx.ru/hardware/fmux16-e3.html]]'), | |
569 | 485 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%FMUX/SAT | http://www.cronyx.ru/hardware/fmux-sat.html]]'), | |
570 | 486 => array ('chapter_id' => 22, 'dict_value' => '[[Cronyx%GPASS%E1-XL/S-IP | http://www.cronyx.ru/hardware/e1xl-ip.html]]'), | |
571 | 487 => array ('chapter_id' => 17, 'dict_value' => '[[RAD%GPASS%FCD-IPM | http://www.rad.com/Article/0,6583,36426-E1_T1_or_Fractional_E1_T1_Modular_Access_Device_with_Integrated_Router,00.html]]'), | |
572 | 488 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-E1M | http://www.rad.com/Article/0,6583,36723-E1_T1_Modular_Access_Multiplexer,00.html]]'), | |
573 | 489 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-T1M | http://www.rad.com/Article/0,6583,36723-E1_T1_Modular_Access_Multiplexer,00.html]]'), | |
574 | 490 => array ('chapter_id' => 22, 'dict_value' => '[[RAD%GPASS%FCD-155E | http://www.rad.com/Article/0,6583,36276-Ethernet_over_SDH_SONET_ADM,00.html]]'), | |
575 | 491 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS78 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20070319151852001&layerid=subClass2]]'), | |
576 | 492 => array ('chapter_id' => 21, 'dict_value' => '[[Aten ACS1208A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111025006&layerid=subClass2]]'), | |
577 | 493 => array ('chapter_id' => 21, 'dict_value' => '[[Aten ACS1216A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111953008&layerid=subClass2]]'), | |
578 | 494 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1754 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050217161051008&layerid=subClass2]]'), | |
579 | 495 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1758 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224093143008&layerid=subClass2]]'), | |
580 | 496 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS9134 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20070130133658002&pid=20050217172845005&layerid=subClass2]]'), | |
581 | 497 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS9138 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224094519006&layerid=subClass2]]'), | |
582 | 498 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1708 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=2005022410563008&layerid=subClass2]]'), | |
583 | 499 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1716 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224110022008&layerid=subClass2]]'), | |
584 | 500 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS1004 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224100546008&layerid=subClass2]]'), | |
585 | 501 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS228 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224114323008&layerid=subClass2]]'), | |
586 | 502 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS428 | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224114721008&layerid=subClass2]]'), | |
587 | 503 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS138A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=20050224111458007&layerid=subClass2]]'), | |
588 | 504 => array ('chapter_id' => 21, 'dict_value' => '[[Aten CS88A | http://www.aten.com/products/productItem.php?pcid=20070130111936003&psid=20070130133658002&pid=2005022411042006&layerid=subClass2]]'), | |
589 | 505 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0832 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131626002&pid=20060628154826001&layerid=subClass1]]'), | |
590 | 506 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0216 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131626002&pid=20060417153950007&layerid=subClass1]]'), | |
591 | 507 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KM0432 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131626002&pid=2006041715359007&layerid=subClass1]]'), | |
592 | 508 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH1508 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20061101174038001&layerid=subClass1]]'), | |
593 | 509 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH1516 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20061101175320001&layerid=subClass1]]'), | |
594 | 510 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH0116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411130954001&pid=20060411145734003&layerid=subClass1]]'), | |
595 | 511 => array ('chapter_id' => 21, 'dict_value' => '[[Aten KH98 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=2007012911116003&pid=20061221104352001&layerid=subClass1]]'), | |
596 | 512 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1100 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20071225113046001&layerid=subClass1]]'), | |
597 | 513 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1508 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20070710020717009&layerid=subClass1]]'), | |
598 | 514 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1516 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20070716232614001&layerid=subClass1]]'), | |
599 | 515 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL9108 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20060811153413009&layerid=subClass1]]'), | |
600 | 516 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL9116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=2006081115384001&layerid=subClass1]]'), | |
601 | 517 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL3116 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20060913162532009&layerid=subClass1]]'), | |
602 | 518 => array ('chapter_id' => 23, 'dict_value' => '[[Aten KL1116 | http://www.aten.com/products/productItem.php?pcid=2006041110563001&psid=20060411131050002&pid=20060420101520005&layerid=subClass1]]'), | |
603 | 519 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1208DL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413505007&layerid=subClass1]]'), | |
604 | 520 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1216DL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413505007&layerid=subClass1]]'), | |
605 | 521 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CS1200L | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20050224140854008&layerid=subClass1]]'), | |
606 | 522 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1758 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20051229164553003&layerid=subClass1]]'), | |
607 | 523 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1208 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005072215482&layerid=subClass1]]'), | |
608 | 524 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1216 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005072215482&layerid=subClass1]]'), | |
609 | 525 => array ('chapter_id' => 23, 'dict_value' => '[[Aten CL1200 | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=20050722165040002&layerid=subClass1]]'), | |
610 | 526 => array ('chapter_id' => 23, 'dict_value' => '[[Aten ACS1208AL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413597003&layerid=subClass1]]'), | |
611 | 527 => array ('chapter_id' => 23, 'dict_value' => '[[Aten ACS1216AL | http://www.aten.com/products/productItem.php?pcid=2005010513171002&psid=20060411131050002&pid=2005022413597003&layerid=subClass1]]'), | |
612 | 528 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%MUXpro 8216 | http://www.tainet.net/Product/muxpro820_8216.htm]]'), | |
613 | 529 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3600+ | http://www.tainet.net/Product/mercury.htm]]'), | |
614 | 530 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3820 | http://www.tainet.net/Product/mercury.htm]]'), | |
615 | 531 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3630 | http://www.tainet.net/Product/mercury.htm]]'), | |
616 | 532 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%Mercury 3630E | http://www.tainet.net/Product/mercury.htm]]'), | |
617 | 533 => array ('chapter_id' => 22, 'dict_value' => '[[Tainet%GPASS%DSD-08A | http://www.tainet.net/Product/dsd08a.htm]]'), | |
618 | 534 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL160 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3580694.html]]'), | |
619 | 535 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL180 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3580698.html]]'), | |
620 | 536 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL185 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-3328421-3579900.html]]'), | |
621 | 537 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL365 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3186080.html]]'), | |
622 | 538 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320s | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3232017.html]]'), | |
623 | 539 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%DL320p | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-3328412-241644-241475-3579703.html]]'), | |
624 | 540 => array ('chapter_id' => 11, 'dict_value' => '[[HP ProLiant%GPASS%ML115 | http://h10010.www1.hp.com/wwpc/us/en/en/WF05a/15351-15351-241434-241646-3328424-3330535.html]]'), | |
625 | 541 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S2410CP | http://www.force10networks.com/products/s2410.asp]]'), | |
626 | 542 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S50N | http://www.force10networks.com/products/s50n.asp]]'), | |
627 | 543 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S50V | http://www.force10networks.com/products/s50v.asp]]'), | |
628 | 544 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S25P | http://www.force10networks.com/products/s25p.asp]]'), | |
629 | 545 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%C150| http://www.force10networks.com/products/cseries.asp]]'), | |
630 | 546 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%C300| http://www.force10networks.com/products/cseries.asp]]'), | |
631 | 547 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E300 | http://www.force10networks.com/products/eseries.asp]]'), | |
632 | 548 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E600 | http://www.force10networks.com/products/eseries.asp]]'), | |
633 | 549 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%E1200 | http://www.force10networks.com/products/eseries.asp]]'), | |
634 | 550 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS524F | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS524F.aspx]]'), | |
635 | 551 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS516 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS516.aspx]]'), | |
636 | 552 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS524.aspx]]'), | |
637 | 553 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS524F | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS524F.aspx]]'), | |
638 | 554 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JGS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JGS524.aspx]]'), | |
639 | 555 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS524 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/FS524.aspx]]'), | |
640 | 556 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%JFS516 | http://www.netgear.com/Products/Switches/UnmanagedSwitches/JFS516.aspx]]'), | |
641 | 557 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7224R | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7224R.aspx]]'), | |
642 | 558 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7248 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7248.aspx]]'), | |
643 | 559 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7212 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7212.aspx]]'), | |
644 | 560 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM726S | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM726S.aspx]]'), | |
645 | 561 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7248R | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/GSM7248R.aspx]]'), | |
74aee2dc | 646 | 562 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7224 | http://www.netgear.com/Products/Switches/FullyManaged10_100_1000Switches/GSM7224.aspx]]'), |
3fb336f6 DO |
647 | 563 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM750S | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM750S.aspx]]'), |
648 | 564 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM726 | http://www.netgear.com/Products/Switches/Layer2ManagedSwitches/FSM726.aspx]]'), | |
649 | 565 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724TP | http://www.netgear.com/Products/Switches/SmartSwitches/GS724TP.aspx]]'), | |
650 | 566 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748TS | http://www.netgear.com/Products/Switches/SmartSwitches/GS748TS.aspx]]'), | |
651 | 567 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724T | http://www.netgear.com/Products/Switches/SmartSwitches/GS724T.aspx]]'), | |
652 | 568 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS728TP | http://www.netgear.com/Products/Switches/SmartSwitches/FS728TP.aspx]]'), | |
653 | 569 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS752TS | http://www.netgear.com/Products/Switches/SmartSwitches/FS752TS.aspx]]'), | |
654 | 570 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS728TS | http://www.netgear.com/Products/Switches/SmartSwitches/FS728TS.aspx]]'), | |
655 | 571 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS726T | http://www.netgear.com/Products/Switches/SmartSwitches/FS726T.aspx]]'), | |
656 | 572 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748TP | http://www.netgear.com/Products/Switches/SmartSwitches/GS748TP.aspx]]'), | |
657 | 573 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS724TS | http://www.netgear.com/Products/Switches/SmartSwitches/GS724TS.aspx]]'), | |
658 | 574 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS748T | http://www.netgear.com/Products/Switches/SmartSwitches/GS748T.aspx]]'), | |
659 | 575 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GS716T | http://www.netgear.com/Products/Switches/SmartSwitches/GS716T.aspx]]'), | |
660 | 576 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS752TPS | http://www.netgear.com/Products/Switches/SmartSwitches/FS752TPS.aspx]]'), | |
661 | 577 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS750T2 | http://www.netgear.com/Products/Switches/SmartSwitches/FS750T2.aspx]]'), | |
662 | 578 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FS726TP | http://www.netgear.com/Products/Switches/SmartSwitches/FS726TP.aspx]]'), | |
663 | 579 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7328PS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7328PS.aspx]]'), | |
664 | 580 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7352S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7352S.aspx]]'), | |
665 | 581 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7324 | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7324.aspx]]'), | |
666 | 582 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7326P | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7326P.aspx]]'), | |
667 | 583 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7352PS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7352PS.aspx]]'), | |
668 | 584 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7328FS | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7328FS.aspx]]'), | |
669 | 585 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7328S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7328S.aspx]]'), | |
670 | 586 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%GSM7312 | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/GSM7312.aspx]]'), | |
671 | 587 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7328S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7328S.aspx]]'), | |
672 | 588 => array ('chapter_id' => 12, 'dict_value' => '[[NETGEAR%GPASS%FSM7352S | http://www.netgear.com/Products/Switches/Layer3ManagedSwitches/FSM7352S.aspx]]'), | |
673 | 589 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-6500 | http://www.dlink.com/products/?sec=0&pid=341]]'), | |
674 | 590 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3227 | http://www.dlink.com/products/?sec=0&pid=506]]'), | |
675 | 591 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3227P | http://www.dlink.com/products/?sec=0&pid=507]]'), | |
676 | 592 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-3250 | http://www.dlink.com/products/?sec=0&pid=468]]'), | |
677 | 593 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DWS-1008 | http://www.dlink.com/products/?sec=0&pid=434]]'), | |
678 | 594 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3612G | http://www.dlink.com/products/?sec=0&pid=557]]'), | |
679 | 595 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3627 | http://www.dlink.com/products/?sec=0&pid=639]]'), | |
680 | 596 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3650 | http://www.dlink.com/products/?sec=0&pid=640]]'), | |
681 | 597 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3324SR | http://www.dlink.com/products/?sec=0&pid=294]]'), | |
682 | 598 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3324SRi | http://www.dlink.com/products/?sec=0&pid=309]]'), | |
683 | 599 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3326GSR | http://www.dlink.com/products/?sec=0&pid=339]]'), | |
684 | 600 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3350SR | http://www.dlink.com/products/?sec=0&pid=340]]'), | |
685 | 601 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3828 | http://www.dlink.com/products/?sec=0&pid=439]]'), | |
686 | 602 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3828P | http://www.dlink.com/products/?sec=0&pid=440]]'), | |
687 | 603 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-24 | http://www.dlink.com/products/?sec=0&pid=635]]'), | |
688 | 604 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-24P | http://www.dlink.com/products/?sec=0&pid=636]]'), | |
689 | 605 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-48 | http://www.dlink.com/products/?sec=0&pid=637]]'), | |
690 | 606 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3100-48P | http://www.dlink.com/products/?sec=0&pid=638]]'), | |
691 | 607 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3227 | http://www.dlink.com/products/?sec=0&pid=483]]'), | |
692 | 608 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3227P | http://www.dlink.com/products/?sec=0&pid=497]]'), | |
693 | 609 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DXS-3250 | http://www.dlink.com/products/?sec=0&pid=443]]'), | |
694 | 610 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3024 | http://www.dlink.com/products/?sec=0&pid=404]]'), | |
695 | 611 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3224TGR | http://www.dlink.com/products/?sec=0&pid=269]]'), | |
696 | 612 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-3048 | http://www.dlink.com/products/?sec=0&pid=496]]'), | |
697 | 613 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3228PA | http://www.dlink.com/products/?sec=0&pid=644]]'), | |
698 | 614 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3028 | http://www.dlink.com/products/?sec=0&pid=630]]'), | |
699 | 615 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3028P | http://www.dlink.com/products/?sec=0&pid=631]]'), | |
700 | 616 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3052 | http://www.dlink.com/products/?sec=0&pid=632]]'), | |
701 | 617 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3052P | http://www.dlink.com/products/?sec=0&pid=633]]'), | |
702 | 618 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010FA | http://www.dlink.com/products/?sec=0&pid=423]]'), | |
703 | 619 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010GA | http://www.dlink.com/products/?sec=0&pid=424]]'), | |
704 | 620 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3010PA | http://www.dlink.com/products/?sec=0&pid=469]]'), | |
705 | 621 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3226L | http://www.dlink.com/products/?sec=0&pid=298]]'), | |
706 | 622 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3526 | http://www.dlink.com/products/?sec=0&pid=330]]'), | |
707 | 623 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-3550 | http://www.dlink.com/products/?sec=0&pid=331]]'), | |
708 | 624 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1216T | http://www.dlink.com/products/?sec=0&pid=324]]'), | |
709 | 625 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1224T | http://www.dlink.com/products/?sec=0&pid=329]]'), | |
710 | 626 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1248T | http://www.dlink.com/products/?sec=0&pid=367]]'), | |
711 | 627 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1316 | http://www.dlink.com/products/?sec=0&pid=353]]'), | |
712 | 628 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1228 | http://www.dlink.com/products/?sec=0&pid=540]]'), | |
713 | 629 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1228P | http://www.dlink.com/products/?sec=0&pid=541]]'), | |
714 | 630 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1252 | http://www.dlink.com/products/?sec=0&pid=555]]'), | |
715 | 631 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1016D | http://www.dlink.com/products/?sec=0&pid=337]]'), | |
716 | 632 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DGS-1024D | http://www.dlink.com/products/?sec=0&pid=338]]'), | |
717 | 633 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DSS-24+ | http://www.dlink.com/products/?sec=0&pid=73]]'), | |
718 | 634 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1024D | http://www.dlink.com/products/?sec=0&pid=75]]'), | |
719 | 635 => array ('chapter_id' => 12, 'dict_value' => '[[D-Link%GPASS%DES-1026G | http://www.dlink.com/products/?sec=0&pid=76]]'), | |
720 | 636 => array ('chapter_id' => 21, 'dict_value' => '[[D-Link%GPASS%DKVM-16 | http://www.dlink.com/products/?sec=0&pid=228]]'), | |
721 | 637 => array ('chapter_id' => 21, 'dict_value' => '[[D-Link%GPASS%DKVM-8E | http://www.dlink.com/products/?sec=0&pid=161]]'), | |
722 | 638 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC702 | http://www.raisecom-international.com/p/RC702.htm]]'), | |
723 | 639 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC702-GE | http://www.raisecom-international.com/p/RC702GE.htm]]'), | |
724 | 640 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%ISCOM4300 | http://www.raisecom-international.com/p/ISCOM4300.htm]]'), | |
725 | 641 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FE4E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'), | |
726 | 642 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FX4E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'), | |
727 | 643 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FE8E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'), | |
728 | 644 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-FX8E1 | http://www.raisecom-international.com/p/RC953FE4E1.htm]]'), | |
729 | 645 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-8FE16E1 | http://www.raisecom-international.com/p/RC9538FE16E1.htm]]'), | |
730 | 646 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953E-3FE16E1 | http://www.raisecom-international.com/p/RC953E-3FE16E1.htm]]'), | |
731 | 647 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC953-GESTM1 | http://www.raisecom-international.com/p/RC957.htm]]'), | |
732 | 648 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%OPCOM3100-155 | http://www.raisecom-international.com/p/OPCOM3100.htm]]'), | |
733 | 649 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%OPCOM3101-155 | http://www.raisecom-international.com/p/OPCOM3101.htm]]'), | |
734 | 650 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-120 | http://www.raisecom-international.com/p/RC831.htm]]'), | |
735 | 651 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-120-BL | http://www.raisecom-international.com/p/RC831.htm]]'), | |
736 | 652 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-240 | http://www.raisecom-international.com/p/RC831.htm]]'), | |
737 | 653 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC831-240E | http://www.raisecom-international.com/p/RC831.htm]]'), | |
738 | 654 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-480GE-BL | http://www.raisecom-international.com/p/RCMS280X.htm]]'), | |
739 | 655 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-120FE | http://www.raisecom-international.com/p/RCMS2801.htm]]'), | |
740 | 656 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-120FE-BL | http://www.raisecom-international.com/p/RCMS2801.htm]]'), | |
741 | 657 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240FE | http://www.raisecom-international.com/p/RCMS2801.htm]]'), | |
742 | 658 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240FE-BL | http://www.raisecom-international.com/p/RCMS2801.htm]]'), | |
743 | 659 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2801-240EFE | http://www.raisecom-international.com/p/RCMS2801.htm]]'), | |
744 | 660 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-120FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'), | |
745 | 661 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'), | |
746 | 662 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240FE-BL | http://www.raisecom-international.com/p/RCMS2811.htm]]'), | |
747 | 663 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-480FE | http://www.raisecom-international.com/p/RCMS2811.htm]]'), | |
748 | 664 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-480FE-BL | http://www.raisecom-international.com/p/RCMS2811.htm]]'), | |
749 | 665 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2811-240EFE | http://www.raisecom-international.com/p/RCMS2811-240EFE.htm]]'), | |
750 | 666 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2104-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
751 | 667 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2304-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
752 | 668 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2504-120 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
753 | 669 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2104-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
754 | 670 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2304-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
755 | 671 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RCMS2504-240 | http://www.raisecom-international.com/p/RCMS2000120.htm]]'), | |
756 | 672 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-120B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
757 | 673 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-240B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
758 | 674 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC801-480B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
759 | 675 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-120B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
760 | 676 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-240B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
761 | 677 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC803-480B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
762 | 678 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-120B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
763 | 679 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-240B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
764 | 680 => array ('chapter_id' => 22, 'dict_value' => '[[Raisecom%GPASS%RC805-480B | http://www.raisecom-international.com/p/RC800120.htm]]'), | |
d9b88ea0 DO |
765 | 681 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (DB-9)'), |
766 | 682 => array ('chapter_id' => 2, 'dict_value' => 'RS-232 (DB-25)'), | |
3fb336f6 DO |
767 | 683 => array ('chapter_id' => 12, 'dict_value' => '[[Force10%GPASS%S2410P | http://www.force10networks.com/products/s2410.asp]]'), |
768 | 684 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-24t | http://www.extremenetworks.com/products/summit-x150.aspx]]'), | |
769 | 685 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-48t | http://www.extremenetworks.com/products/summit-x150.aspx]]'), | |
770 | 686 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X150-24p | http://www.extremenetworks.com/products/summit-x150.aspx]]'), | |
771 | 687 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24t | http://www.extremenetworks.com/products/summit-x250e.aspx]]'), | |
772 | 688 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-48t | http://www.extremenetworks.com/products/summit-x250e.aspx]]'), | |
773 | 689 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24p | http://www.extremenetworks.com/products/summit-x250e.aspx]]'), | |
774 | 690 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-48p | http://www.extremenetworks.com/products/summit-x250e.aspx]]'), | |
775 | 691 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X250e-24x | http://www.extremenetworks.com/products/summit-x250e.aspx]]'), | |
776 | 692 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450-24t | http://www.extremenetworks.com/products/summit-x450.aspx]]'), | |
777 | 693 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450-24x | http://www.extremenetworks.com/products/summit-x450.aspx]]'), | |
778 | 694 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-24t | http://www.extremenetworks.com/products/summit-x450a.aspx]]'), | |
779 | 695 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-48t | http://www.extremenetworks.com/products/summit-x450a.aspx]]'), | |
780 | 696 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450a-24x | http://www.extremenetworks.com/products/summit-x450a.aspx]]'), | |
781 | 697 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450e-24p | http://www.extremenetworks.com/products/summit-x450e.aspx]]'), | |
782 | 698 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X450e-48p | http://www.extremenetworks.com/products/summit-x450e.aspx]]'), | |
783 | 699 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-24fx | http://www.extremenetworks.com/products/summit-200.aspx]]'), | |
784 | 700 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-24 | http://www.extremenetworks.com/products/summit-200.aspx]]'), | |
785 | 701 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 200-48 | http://www.extremenetworks.com/products/summit-200.aspx]]'), | |
786 | 702 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 300-24 | http://www.extremenetworks.com/products/summit-300.aspx]]'), | |
787 | 703 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 300-48 | http://www.extremenetworks.com/products/summit-300.aspx]]'), | |
788 | 704 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-24p | http://www.extremenetworks.com/products/summit-400-24p.aspx]]'), | |
789 | 705 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-24t | http://www.extremenetworks.com/products/summit-400-24t.aspx]]'), | |
790 | 706 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit 400-48t | http://www.extremenetworks.com/products/summit-400-48t.aspx]]'), | |
791 | 707 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit48si | http://www.extremenetworks.com/products/summit-48si.aspx]]'), | |
792 | 708 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Alpine 3804 | http://www.extremenetworks.com/products/Alpine-3800.aspx]]'), | |
793 | 709 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Alpine 3808 | http://www.extremenetworks.com/products/Alpine-3800.aspx]]'), | |
794 | 710 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 6808 | http://www.extremenetworks.com/products/blackdiamond-6800.aspx]]'), | |
795 | 711 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 8806 | http://www.extremenetworks.com/products/blackdiamond-8800.aspx]]'), | |
796 | 712 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 8810 | http://www.extremenetworks.com/products/blackdiamond-8800.aspx]]'), | |
797 | 713 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 10808 | http://www.extremenetworks.com/products/blackdiamond-10808.aspx]]'), | |
798 | 714 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12802R | http://www.extremenetworks.com/products/blackdiamond-12800r.aspx]]'), | |
799 | 715 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12804R | http://www.extremenetworks.com/products/blackdiamond-12800r.aspx]]'), | |
800 | 716 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%BlackDiamond 12804C | http://www.extremenetworks.com/products/blackdiamond-12804c.aspx]]'), | |
801 | 717 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1002 | http://cisco.com/en/US/products/ps9436/index.html]]'), | |
802 | 718 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1004 | http://cisco.com/en/US/products/ps9437/index.html]]'), | |
803 | 719 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%ASR 1006 | http://cisco.com/en/US/products/ps9438/index.html]]'), | |
804 | 720 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.3 | http://openbsd.org/33.html]]'), | |
805 | 721 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.4 | http://openbsd.org/34.html]]'), | |
806 | 722 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.5 | http://openbsd.org/35.html]]'), | |
807 | 723 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.6 | http://openbsd.org/36.html]]'), | |
808 | 724 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.7 | http://openbsd.org/37.html]]'), | |
809 | 725 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.8 | http://openbsd.org/38.html]]'), | |
810 | 726 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 3.9 | http://openbsd.org/39.html]]'), | |
811 | 727 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.0 | http://openbsd.org/40.html]]'), | |
812 | 728 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.1 | http://openbsd.org/41.html]]'), | |
813 | 729 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.2 | http://openbsd.org/42.html]]'), | |
814 | 730 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.3 | http://openbsd.org/43.html]]'), | |
a013838b | 815 | // 1018 duplicated 731 later, so 731 isn't here any more |
3fb336f6 DO |
816 | 732 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.0 | http://www.freebsd.org/releases/7.0R/announce.html]]'), |
817 | 733 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 2.0 | http://netbsd.org/releases/formal-2.0/]]'), | |
818 | 734 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 2.1 | http://netbsd.org/releases/formal-2.0/NetBSD-2.1.html]]'), | |
819 | 735 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 3.0 | http://netbsd.org/releases/formal-3/]]'), | |
820 | 736 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 3.1 | http://netbsd.org/releases/formal-3/NetBSD-3.1.html]]'), | |
821 | 737 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 4.0 | http://netbsd.org/releases/formal-4/NetBSD-4.0.html]]'), | |
822 | 738 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2016 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16470B]]'), | |
823 | 739 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2024 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16471B]]'), | |
824 | 740 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2126-G | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16472]]'), | |
825 | 741 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2816 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16478]]'), | |
826 | 742 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2824 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16479]]'), | |
827 | 743 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2226 Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16475CS]]'), | |
828 | 744 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2426-PWR Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16491]]'), | |
829 | 745 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2250 Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16476CS]]'), | |
830 | 746 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2916-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG16]]'), | |
831 | 747 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2924-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG24]]'), | |
832 | 748 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2924-PWR Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG24PWR]]'), | |
833 | 749 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%Baseline 2948-SFP Plus | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CBLSG48]]'), | |
834 | 750 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%3870 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17450-91]]'), | |
835 | 751 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%3870 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17451-91]]'), | |
836 | 752 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17300A&pathtype=purchase]]'), | |
837 | 753 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 28-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17304A&pathtype=purchase]]'), | |
838 | 754 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17302A&pathtype=purchase]]'), | |
839 | 755 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 12-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17660-91&pathtype=purchase]]'), | |
840 | 756 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17661-91&pathtype=purchase]]'), | |
841 | 757 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17671-91&pathtype=purchase]]'), | |
842 | 758 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4200G 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3CR17662-91&pathtype=purchase]]'), | |
843 | 759 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17333-91]]'), | |
844 | 760 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 52-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17334-91]]'), | |
845 | 761 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4210 26-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17343-91]]'), | |
846 | 762 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17204-US]]'), | |
847 | 763 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17203-US]]'), | |
848 | 764 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17205-US]]'), | |
849 | 765 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%SS3 4400 SE 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C17206-US]]'), | |
850 | 766 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17561-91]]'), | |
851 | 767 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17562-91]]'), | |
852 | 768 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 PWR 26-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17571-91]]'), | |
853 | 769 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500 PWR 50-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17572-91]]'), | |
854 | 770 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17761-91]]'), | |
855 | 771 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17762-91]]'), | |
856 | 772 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17771-91]]'), | |
857 | 773 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%4500G PWR 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17772-91]]'), | |
858 | 774 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17161-91]]'), | |
859 | 775 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 52-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17162-91]]'), | |
860 | 776 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17171-91]]'), | |
861 | 777 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 52-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17172-91]]'), | |
862 | 778 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500-EI 28-port FX | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17181-91]]'), | |
863 | 779 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17250-91]]'), | |
864 | 780 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 48-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17251-91]]'), | |
865 | 781 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI PWR 24-port | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17252-91]]'), | |
866 | 782 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 48-port PWR | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17253-91]]'), | |
867 | 783 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%5500G-EI 24-port SFP | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3CR17258-91]]'), | |
868 | 784 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7754 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16894]]'), | |
869 | 785 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7757 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16895]]'), | |
870 | 786 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%7758 | http://www.3com.com/products/en_US/detail.jsp?tab=features&pathtype=purchase&sku=3C16896]]'), | |
871 | 787 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8807 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17502A&pathtype=purchase]]'), | |
872 | 788 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8810 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17501A&pathtype=purchase]]'), | |
873 | 789 => array ('chapter_id' => 12, 'dict_value' => '[[3Com%GPASS%8814 | http://www.3com.com/products/en_US/detail.jsp?tab=features&sku=3C17500A&pathtype=purchase]]'), | |
ad9da675 | 874 | 790 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 9'), |
3fb336f6 DO |
875 | 791 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%openSUSE 11.0 | http://en.opensuse.org/OpenSUSE_11.0]]'), |
876 | 792 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE250'), | |
877 | 793 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE310'), | |
878 | 794 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE320'), | |
0682218d | 879 | 795 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco (blade)%GPASS%Catalyst 3032-DEL | http://www.cisco.com/en/US/products/ps8772/index.html]]'), |
3fb336f6 DO |
880 | 796 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 8.10'), |
881 | 797 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.4 | http://openbsd.org/44.html]]'), | |
882 | 798 => array ('chapter_id' => 1, 'dict_value' => 'Network security'), | |
883 | 799 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5505'), | |
884 | 800 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5510'), | |
885 | 801 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5520'), | |
886 | 802 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5540'), | |
887 | 803 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5550'), | |
888 | 804 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5580-20'), | |
889 | 805 => array ('chapter_id' => 24, 'dict_value' => 'Cisco%GPASS%ASA 5580-40'), | |
890 | 806 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4215 | http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/ps5367/index.html]]'), | |
891 | 807 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4240 | http://www.cisco.com/en/US/products/ps5768/index.html]]'), | |
892 | 808 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4255 | http://www.cisco.com/en/US/products/ps5769/index.html]]'), | |
893 | 809 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4260 | http://www.cisco.com/en/US/products/ps6751/index.html]]'), | |
894 | 810 => array ('chapter_id' => 24, 'dict_value' => '[[Cisco%GPASS%IDS 4270 | http://www.cisco.com/en/US/products/ps9157/index.html]]'), | |
895 | 811 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 100'), | |
896 | 812 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 100C'), | |
897 | 813 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 300'), | |
898 | 814 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIron 300C'), | |
899 | 815 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 100-4802'), | |
900 | 816 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 300-32GC02'), | |
901 | 817 => array ('chapter_id' => 24, 'dict_value' => 'Foundry%GPASS%SecureIronLS 300-32GC10G'), | |
902 | 818 => array ('chapter_id' => 24, 'dict_value' => '[[D-Link%GPASS%DFL-1600 | http://www.dlink.com/products/?sec=0&pid=454]]'), | |
903 | 819 => array ('chapter_id' => 24, 'dict_value' => '[[D-Link%GPASS%DFL-M510 | http://www.dlink.com/products/?sec=0&pid=455]]'), | |
904 | 820 => array ('chapter_id' => 24, 'dict_value' => '[[Extreme Networks%GPASS%Sentriant AG200 | http://www.extremenetworks.com/products/sentriant-ag200.aspx]]'), | |
905 | 821 => array ('chapter_id' => 24, 'dict_value' => '[[Extreme Networks%GPASS%Sentriant NG300 | http://www.extremenetworks.com/products/sentriant-ng300.aspx]]'), | |
906 | 822 => array ('chapter_id' => 24, 'dict_value' => '[[Force10%GPASS%P-Series | http://www.force10networks.com/products/pseries.asp]]'), | |
907 | 823 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 140 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_140/index.html]]'), | |
908 | 824 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 320 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_300_series/index.html]]'), | |
909 | 825 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 350 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_300_series/index.html]]'), | |
910 | 826 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 520 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_500_series/index.html]]'), | |
911 | 827 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SSG 550 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/ssg_500_series/index.html]]'), | |
912 | 828 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%ISG 1000 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'), | |
913 | 829 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%ISG 2000 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'), | |
914 | 830 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 5200 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'), | |
915 | 831 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%NetScreen 5400 | http://www.juniper.net/products_and_services/firewall_slash_ipsec_vpn/isg_series_slash_gprs/index.html]]'), | |
916 | 832 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SRX 5600 | http://www.juniper.net/products_and_services/srx_series/index.html]]'), | |
917 | 833 => array ('chapter_id' => 24, 'dict_value' => '[[Juniper%GPASS%SRX 5800 | http://www.juniper.net/products_and_services/srx_series/index.html]]'), | |
918 | 834 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 1260 | http://www.sonicwall.com/us/products/PRO_1260.html]]'), | |
919 | 835 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 2040 | http://www.sonicwall.com/us/products/PRO_2040.html]]'), | |
920 | 836 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 3060 | http://www.sonicwall.com/us/products/PRO_3060.html]]'), | |
921 | 837 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 4060 | http://www.sonicwall.com/us/products/PRO_4060.html]]'), | |
922 | 838 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 4100 | http://www.sonicwall.com/us/products/PRO_4100.html]]'), | |
923 | 839 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%PRO 5060 | http://www.sonicwall.com/us/products/PRO_5060.html]]'), | |
924 | 840 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 240 | http://www.sonicwall.com/us/products/NSA_240.html]]'), | |
925 | 841 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 2400 | http://www.sonicwall.com/us/products/NSA_2400.html]]'), | |
926 | 842 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 3500 | http://www.sonicwall.com/us/products/NSA_3500.html]]'), | |
927 | 843 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 4500 | http://www.sonicwall.com/us/products/NSA_4500.html]]'), | |
928 | 844 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA 5000 | http://www.sonicwall.com/us/products/NSA_5000.html]]'), | |
929 | 845 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E5500 | http://www.sonicwall.com/us/products/NSA_E5500.html]]'), | |
930 | 846 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E6500 | http://www.sonicwall.com/us/products/NSA_E6500.html]]'), | |
931 | 847 => array ('chapter_id' => 24, 'dict_value' => '[[SonicWall%GPASS%NSA E7500 | http://www.sonicwall.com/us/products/NSA_E7500.html]]'), | |
932 | 848 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1400-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1400_Series/overview.htm]]'), | |
933 | 849 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1700-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1700_Series/overview.htm]]'), | |
934 | 850 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%1800-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_1800_Series/overview.htm]]'), | |
935 | 851 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2124 | http://www.hp.com/rnd/products/switches/switch2124/overview.htm]]'), | |
936 | 852 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2312 | http://www.hp.com/rnd/products/switches/switch2324-2312/overview.htm]]'), | |
937 | 853 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2324 | http://www.hp.com/rnd/products/switches/switch2324-2312/overview.htm]]'), | |
938 | 854 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'), | |
939 | 855 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'), | |
940 | 856 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510G-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'), | |
941 | 857 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2510G-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2510_Series/overview.htm]]'), | |
942 | 858 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2512 | http://www.hp.com/rnd/products/switches/switch2524-2512/overview.htm]]'), | |
943 | 859 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2524 | http://www.hp.com/rnd/products/switches/switch2524-2512/overview.htm]]'), | |
944 | 860 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-24 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'), | |
945 | 861 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-24-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'), | |
946 | 862 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-48 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'), | |
947 | 863 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2610-48-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2610_Series/overview.htm]]'), | |
948 | 864 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2626 | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'), | |
949 | 865 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2626-PWR | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'), | |
950 | 866 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2650 | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'), | |
951 | 867 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2650-PWR | http://www.hp.com/rnd/products/switches/switch2600series/overview.htm]]'), | |
952 | 868 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2810-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2810_Series/overview.htm]]'), | |
953 | 869 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2810-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2810_Series/overview.htm]]'), | |
954 | 870 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2824 | http://www.hp.com/rnd/products/switches/2800_series/overview.htm]]'), | |
955 | 871 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2848 | http://www.hp.com/rnd/products/switches/2800_series/overview.htm]]'), | |
956 | 872 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2900-24G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2900_Series/overview.htm]]'), | |
957 | 873 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2900-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_2900_Series/overview.htm]]'), | |
958 | 874 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3400cl-24G | http://www.hp.com/rnd/products/switches/switch3400series/overview.htm]]'), | |
959 | 875 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3400cl-48G | http://www.hp.com/rnd/products/switches/switch3400series/overview.htm]]'), | |
960 | 876 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3500yl-24G-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
961 | 877 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%3500yl-48G-PWR | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
962 | 878 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4202vl-72 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
963 | 879 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4204vl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
964 | 880 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4204vl-48GS | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
965 | 881 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
966 | 882 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl-72GS | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
967 | 883 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4208vl-96 | http://www.hp.com/rnd/products/switches/ProCurve_Switch_4200vl_Series/overview.htm]]'), | |
968 | 884 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5304xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'), | |
969 | 885 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5308xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'), | |
970 | 886 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5348xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'), | |
971 | 887 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5372xl | http://www.hp.com/rnd/products/switches/switch5300xlseries/overview.htm]]'), | |
972 | 888 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5406zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
973 | 889 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5406zl-48G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
974 | 890 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5412zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
975 | 891 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%5412zl-96G | http://www.hp.com/rnd/products/switches/ProCurve_Switch_3500yl-5400zl_Series/overview.htm]]'), | |
976 | 892 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6108 | http://www.hp.com/rnd/products/switches/switch6108/overview.htm]]'), | |
977 | 893 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6200yl-24G-mGBIC | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6200yl-24G-mGBIC/overview.htm]]'), | |
978 | 894 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6400cl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6400cl_Series/overview.htm]]'), | |
979 | 895 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%6410cl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_6400cl_Series/overview.htm]]'), | |
980 | 896 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8108fl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8100fl_Series/overview.htm]]'), | |
981 | 897 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8116fl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8100fl_Series/overview.htm]]'), | |
982 | 898 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%8212zl | http://www.hp.com/rnd/products/switches/ProCurve_Switch_8212zl/overview.htm]]'), | |
983 | 899 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-24P | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
984 | 900 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-24T | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
985 | 901 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-48P | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
986 | 902 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 3200-48T | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
987 | 903 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24F | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
988 | 904 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24P | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
989 | 905 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-24T | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
990 | 906 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-48P | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
991 | 907 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 4200-48T | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
992 | 908 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%EX 8208 | http://www.juniper.net/products_and_services/ex_series/index.html]]'), | |
993 | 909 => array ('chapter_id' => 12, 'dict_value' => '[[Juniper%GPASS%E120 BSR | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
994 | 910 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%E320 BSR | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
995 | 911 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-310 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
996 | 912 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-705 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
997 | 913 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-710 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
998 | 914 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-1410 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
999 | 915 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%ERX-1440 | http://www.juniper.net/products_and_services/e_series_broadband_service/index.html]]'), | |
1000 | 916 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J2320 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'), | |
1001 | 917 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J2350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'), | |
1002 | 918 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J4350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'), | |
1003 | 919 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%J6350 | http://www.juniper.net/products_and_services/j_series_services_routers/index.html]]'), | |
1004 | 920 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M7i | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'), | |
1005 | 921 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M10i | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'), | |
1006 | 922 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M40e | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'), | |
1007 | 923 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M120 | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'), | |
1008 | 924 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%M320 | http://www.juniper.net/products_and_services/m_series_routing_portfolio/index.html]]'), | |
1009 | 925 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX240 | http://www.juniper.net/products_and_services/mx_series/index.html]]'), | |
1010 | 926 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX480 | http://www.juniper.net/products_and_services/mx_series/index.html]]'), | |
1011 | 927 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX960 | http://www.juniper.net/products_and_services/mx_series/index.html]]'), | |
1012 | 928 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T320 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'), | |
1013 | 929 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T640 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'), | |
1014 | 930 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%T1600 | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'), | |
1015 | 931 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%TX Matrix | http://www.juniper.net/products_and_services/t_series_core_platforms/index.html]]'), | |
ad9da675 | 1016 | 932 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 10'), |
3fb336f6 DO |
1017 | 933 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%openSUSE 11.1 | http://en.opensuse.org/OpenSUSE_11.1]]'), |
1018 | 934 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP WebAccelerator 4500 | http://www.f5.com/pdf/products/big-ip-webaccelerator-ds.pdf]]'), | |
1019 | 935 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%VIPRION | http://www.f5.com/pdf/products/viprion-overview-ds.pdf]]'), | |
1020 | 936 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 1500 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'), | |
1021 | 937 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 1600 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'), | |
1022 | 938 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 3400 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'), | |
1023 | 939 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 3600 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'), | |
1024 | 940 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6400 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'), | |
1025 | 941 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6800 | http://www.f5.com/pdf/products/big-ip-platforms-2007-ds.pdf]]'), | |
1026 | 942 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 6900 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'), | |
1027 | 943 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 8400 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'), | |
1028 | 944 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%BIG-IP 8800 | http://www.f5.com/pdf/products/big-ip-platforms-ds.pdf]]'), | |
1029 | 945 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 500 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'), | |
1030 | 946 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 1000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'), | |
1031 | 947 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 4000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'), | |
1032 | 948 => array ('chapter_id' => 12, 'dict_value' => '[[F5%GPASS%ARX 6000 | http://www.f5.com/pdf/products/arx-series-ds.pdf]]'), | |
1033 | 949 => array ('chapter_id' => 17, 'dict_value' => '[[F5%GPASS%WANJet 300 | http://www.f5.com/pdf/products/wanjet-hardware-ds.pdf]]'), | |
1034 | 950 => array ('chapter_id' => 17, 'dict_value' => '[[F5%GPASS%WANJet 500 | http://www.f5.com/pdf/products/wanjet-hardware-ds.pdf]]'), | |
1035 | 951 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 1200 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'), | |
1036 | 952 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 4100 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'), | |
1037 | 953 => array ('chapter_id' => 24, 'dict_value' => '[[F5%GPASS%FirePass 4300 | http://www.f5.com/pdf/products/firepass-hardware-ds.pdf]]'), | |
1038 | 954 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 5.0 (lenny) | http://debian.org/releases/lenny/]]'), | |
1039 | 955 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE270'), | |
1040 | 956 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE340'), | |
1041 | 957 => array ('chapter_id' => 11, 'dict_value' => 'SGI%GPASS%Altix XE500'), | |
1042 | 958 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 2148T | http://cisco.com/en/US/products/ps10118/index.html]]'), | |
1043 | 959 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 5010 | http://cisco.com/en/US/products/ps9711/index.html]]'), | |
1044 | 960 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 5020 | http://cisco.com/en/US/products/ps9710/index.html]]'), | |
1045 | 961 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 7010 | http://cisco.com/en/US/products/ps9512/index.html]]'), | |
1046 | 962 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 7018 | http://cisco.com/en/US/products/ps10098/index.html]]'), | |
1047 | 963 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 4.0'), | |
1048 | 964 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 4.1'), | |
1049 | 965 => array ('chapter_id' => 1, 'dict_value' => 'Wireless'), | |
1050 | 966 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2106 | http://cisco.com/en/US/products/ps7221/index.html]]'), | |
1051 | 967 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2112 | http://cisco.com/en/US/products/ps9818/index.html]]'), | |
1052 | 968 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%2125 | http://cisco.com/en/US/products/ps9819/index.html]]'), | |
1053 | 969 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%4402 | http://cisco.com/en/US/products/ps6396/index.html]]'), | |
1054 | 970 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%4404 | http://cisco.com/en/US/products/ps6397/index.html]]'), | |
1055 | 971 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1140 | http://cisco.com/en/US/products/ps10092/index.html]]'), | |
1056 | 972 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1200 | http://cisco.com/en/US/products/hw/wireless/ps430/ps4076/index.html]]'), | |
1057 | 973 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1230 AG | http://cisco.com/en/US/products/ps6132/index.html]]'), | |
1058 | 974 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1240 AG | http://cisco.com/en/US/products/ps6521/index.html]]'), | |
1059 | 975 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1250 | http://cisco.com/en/US/products/ps8382/index.html]]'), | |
1060 | 976 => array ('chapter_id' => 25, 'dict_value' => '[[Cisco%GPASS%Aironet 1520 | http://cisco.com/en/US/products/ps8368/index.html]]'), | |
1061 | 977 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP150'), | |
1062 | 978 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%OAP180'), | |
1063 | 979 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP201'), | |
1064 | 980 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP208'), | |
1065 | 981 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP250'), | |
1066 | 982 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%AP300'), | |
1067 | 983 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%RS4000'), | |
1068 | 984 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC500'), | |
1069 | 985 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC1000'), | |
1070 | 986 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC3000'), | |
1071 | 987 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC4100'), | |
1072 | 988 => array ('chapter_id' => 25, 'dict_value' => 'Foundry%GPASS%MC5000'), | |
1073 | 989 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R410'), | |
1074 | 990 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R610'), | |
1075 | 991 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R710'), | |
1076 | 992 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R805'), | |
1077 | 993 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R905'), | |
0682218d | 1078 | 994 => array ('chapter_id' => 31, 'dict_value' => 'Dell PowerEdge%GPASS%M1000e'), |
1e203519 RF |
1079 | 995 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault%GPASS%MD1000'), |
1080 | 996 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault%GPASS%MD1120'), | |
3fb336f6 DO |
1081 | 997 => array ('chapter_id' => 18, 'dict_value' => 'Dell EqualLogic PS5000'), |
1082 | 998 => array ('chapter_id' => 18, 'dict_value' => 'Dell EqualLogic PS6000'), | |
1083 | 999 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-120 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-120.htm]]'), | |
1084 | 1000 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-240 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-240.htm]]'), | |
1085 | 1001 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-480 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-480.htm]]'), | |
66631324 | 1086 | 1002 => array ('chapter_id' => 18, 'dict_value' => '[[EMC CLARiiON CX4-960 SPE | http://www.emc.com/products/detail/hardware/clariion-cx4-model-960.htm]]'), |
3fb336f6 DO |
1087 | 1003 => array ('chapter_id' => 18, 'dict_value' => 'EMC CLARiiON CX4 DAE'), |
1088 | 1004 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%300 | http://www.brocade.com/products-solutions/products/switches/product-details/300-switch/index.page]]'), | |
1089 | 1005 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%4900 | http://www.brocade.com/products-solutions/products/switches/index.page]]'), | |
1090 | 1006 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5000 | http://www.brocade.com/products-solutions/products/switches/index.page]]'), | |
1091 | 1007 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5100 | http://www.brocade.com/products-solutions/products/switches/product-details/5100-switch/index.page]]'), | |
1092 | 1008 => array ('chapter_id' => 26, 'dict_value' => '[[Brocade%GPASS%5300 | http://www.brocade.com/products-solutions/products/switches/product-details/5300-switch/index.page]]'), | |
1093 | 1009 => array ('chapter_id' => 26, 'dict_value' => '[[Cisco%GPASS%MDS 9124 | http://www.cisco.com/en/US/products/ps7079/index.html]]'), | |
1094 | 1010 => array ('chapter_id' => 26, 'dict_value' => '[[Cisco%GPASS%MDS 9134 | http://www.cisco.com/en/US/products/ps8414/index.html]]'), | |
1095 | 1011 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%1400 | http://www.qlogic.com/Products/SAN_products_FCS_san1400.aspx]]'), | |
1096 | 1012 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%3800 | http://www.qlogic.com/Products/SAN_products_FCS_san3800.aspx]]'), | |
1097 | 1013 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%5600Q | http://www.qlogic.com/Products/SAN_products_FCS_san5600Q.aspx]]'), | |
1098 | 1014 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%5800V | http://www.qlogic.com/Products/SAN_products_FCS_san5802V.aspx]]'), | |
1099 | 1015 => array ('chapter_id' => 26, 'dict_value' => '[[QLogic%GPASS%9000 | http://www.qlogic.com/Products/SAN_products_FCS_san9000.aspx]]'), | |
1100 | 1016 => array ('chapter_id' => 17, 'dict_value' => '[[Cisco%GPASS%ASR 9006 | http://cisco.com/en/US/products/ps10075/index.html]]'), | |
1101 | 1017 => array ('chapter_id' => 17, 'dict_value' => '[[Cisco%GPASS%ASR 9010 | http://cisco.com/en/US/products/ps10076/index.html]]'), | |
1102 | 1018 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4900M | http://www.cisco.com/en/US/products/ps9310/index.html]]'), | |
1103 | 1019 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Catalyst 4928-10GE | http://www.cisco.com/en/US/products/ps9903/index.html]]'), | |
3fb336f6 DO |
1104 | 1022 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 624S | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'), |
1105 | 1023 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 624S-HPOE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'), | |
1106 | 1024 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 648S | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'), | |
1107 | 1025 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron CX 648S-HPOE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-cx-series/overview.page]]'), | |
1108 | 1026 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1109 | 1027 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1110 | 1028 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624G | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1111 | 1029 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 624G-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1112 | 1030 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1113 | 1031 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1114 | 1032 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648G | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1115 | 1033 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FastIron WS 648G-POE | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fastiron-ws-series/overview.page]]'), | |
1116 | 1034 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2024C | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1117 | 1035 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2024F | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1118 | 1036 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048C | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1119 | 1037 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048F | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1120 | 1038 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048CX | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1121 | 1039 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%NetIron CES 2048FX | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/service-provider/product-details/netiron-ces-2000-series/overview.page]]'), | |
1122 | 1040 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 1000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'), | |
1123 | 1041 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 4000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'), | |
1124 | 1042 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron ADX 8000 | http://www.brocade.com/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-adx-series/overview.page]]'), | |
1125 | 1043 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%ServerIron 4G-SSL-FIPS | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/application-switching/product-details/serveriron-4g-application-switches/index.page]]'), | |
1126 | 1044 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%TurboIron 24X | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/turboiron-24x-switch/index.page]]'), | |
ad9da675 | 1127 | 1045 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RH Fedora 11'), |
3fb336f6 DO |
1128 | 1046 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%NetBSD 5.0 | http://netbsd.org/releases/formal-5/NetBSD-5.0.html]]'), |
1129 | 1047 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenBSD 4.5 | http://openbsd.org/45.html]]'), | |
1130 | 1048 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2008.05 | http://opensolaris.org/os/project/indiana/resources/relnotes/200805/x86/]]'), | |
1131 | 1049 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2008.11 | http://opensolaris.org/os/project/indiana/resources/relnotes/200811/x86/]]'), | |
1132 | 1050 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%OpenSolaris 2009.06 | http://opensolaris.org/os/project/indiana/resources/relnotes/200906/x86/]]'), | |
1133 | 1051 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2006.0 | http://www.gentoo.org/proj/en/releng/release/2006.0/2006.0.xml]]'), | |
1134 | 1052 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2007.0 | http://www.gentoo.org/proj/en/releng/release/2007.0/2007.0-press-release.txt]]'), | |
1135 | 1053 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Gentoo 2008.0 | http://www.gentoo.org/proj/en/releng/release/2008.0/index.xml]]'), | |
1136 | 1054 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 9.04'), | |
1137 | 1055 => array ('chapter_id' => 1, 'dict_value' => 'FC switch'), | |
1138 | 1056 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst CBS3030-DEL'), | |
1139 | 1057 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.1 | http://www.freebsd.org/releases/7.1R/relnotes.html]]'), | |
1140 | 1058 => array ('chapter_id' => 13, 'dict_value' => '[[BSD%GSKIP%FreeBSD 7.2 | http://www.freebsd.org/releases/7.2R/relnotes.html]]'), | |
60d6dc05 AD |
1141 | 1059 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R200'), |
1142 | 1060 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R300'), | |
1143 | 1061 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2808'), | |
1144 | 1062 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2816'), | |
1145 | 1063 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2824'), | |
1146 | 1064 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%2848'), | |
1147 | 1065 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3524'), | |
1148 | 1066 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3524P'), | |
1149 | 1067 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3548'), | |
1150 | 1068 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%3548P'), | |
1151 | 1069 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5424'), | |
1152 | 1070 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect%GPASS%5448'), | |
1153 | 1071 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 2400'), | |
1154 | 1072 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 2800'), | |
1155 | 1073 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3200'), | |
1156 | 1074 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3800'), | |
1157 | 1075 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 3900'), | |
1158 | 1076 => array ('chapter_id' => 26, 'dict_value' => 'Brocade%GPASS%Silkworm 4100'), | |
3153a326 DO |
1159 | 1077 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP-1000'), |
1160 | 1078 => array ('chapter_id' => 2, 'dict_value' => 'empty GBIC'), | |
1161 | 1079 => array ('chapter_id' => 2, 'dict_value' => 'empty XENPAK'), | |
1162 | 1080 => array ('chapter_id' => 2, 'dict_value' => 'empty X2'), | |
1163 | 1081 => array ('chapter_id' => 2, 'dict_value' => 'empty XPAK'), | |
1164 | 1082 => array ('chapter_id' => 2, 'dict_value' => 'empty XFP'), | |
d9b88ea0 | 1165 | 1083 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX (MT-RJ)'), |
3153a326 | 1166 | 1084 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP+'), |
56a797ef | 1167 | 1085 => array ('chapter_id' => 12, 'dict_value' => 'Nortel%GPASS%BES50GE-12T PWR'), |
638899e6 | 1168 | 1086 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%4000M | http://www.hp.com/rnd/products/switches/switch4000/overview.htm]]'), |
93a83f51 | 1169 | 1087 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T (Dell 1855)'), |
7c605f70 DO |
1170 | 1088 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS2020 | http://www.netapp.com/us/products/storage-systems/fas2000/]]'), |
1171 | 1089 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS2050 | http://www.netapp.com/us/products/storage-systems/fas2000/]]'), | |
1172 | 1090 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3020'), | |
1173 | 1091 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3040'), | |
1174 | 1092 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3050'), | |
1175 | 1093 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS3070'), | |
1176 | 1094 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3140 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'), | |
1177 | 1095 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3160 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'), | |
1178 | 1096 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS3170 | http://www.netapp.com/us/products/storage-systems/fas3100/]]'), | |
1179 | 1097 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS6030'), | |
1180 | 1098 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS6040 | http://www.netapp.com/us/products/storage-systems/fas6000/]]'), | |
1181 | 1099 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%FAS6070'), | |
1182 | 1100 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%FAS6080 | http://www.netapp.com/us/products/storage-systems/fas6000/]]'), | |
1183 | 1101 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3140 | http://www.netapp.com/us/products/storage-systems/v3100/]]'), | |
1184 | 1102 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3160 | http://www.netapp.com/us/products/storage-systems/v3100/]]'), | |
1185 | 1103 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V3170 | http://www.netapp.com/us/products/storage-systems/v3100/]]'), | |
1186 | 1104 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6030 | http://www.netapp.com/us/products/storage-systems/v6000/]]'), | |
1187 | 1105 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6040 | http://www.netapp.com/us/products/storage-systems/v6000/]]'), | |
1188 | 1106 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6070 | http://www.netapp.com/us/products/storage-systems/v6000/]]'), | |
1189 | 1107 => array ('chapter_id' => 18, 'dict_value' => '[[NetApp%GPASS%V6080 | http://www.netapp.com/us/products/storage-systems/v6000/]]'), | |
1190 | 1108 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk2 AT'), | |
1191 | 1109 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk2 FC'), | |
1192 | 1110 => array ('chapter_id' => 18, 'dict_value' => 'NetApp%GPASS%DS14mk4 FC'), | |
7f194685 DO |
1193 | 1111 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7152 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7152]]'), |
1194 | 1112 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7155 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7155]]'), | |
1195 | 1113 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7175 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7175]]'), | |
1196 | 1114 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7526 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7526]]'), | |
1197 | 1115 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7551 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7551]]'), | |
1198 | 1116 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7552 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7552]]'), | |
1199 | 1117 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7553 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7553]]'), | |
1200 | 1118 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7554 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7554]]'), | |
1201 | 1119 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7555 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7555]]'), | |
1202 | 1120 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7557 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7557]]'), | |
1203 | 1121 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7585 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7585]]'), | |
1204 | 1122 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7586 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7586]]'), | |
1205 | 1123 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7611 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7611]]'), | |
1206 | 1124 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7631 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7631]]'), | |
1207 | 1125 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7820 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7820]]'), | |
1208 | 1126 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7821 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7821]]'), | |
1209 | 1127 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7822 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7822]]'), | |
1210 | 1128 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7850 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7850]]'), | |
1211 | 1129 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7851 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7851]]'), | |
1212 | 1130 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7852 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7852]]'), | |
1213 | 1131 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7853 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7853]]'), | |
1214 | 1132 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7854 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7854]]'), | |
1215 | 1133 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7855A | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7855A]]'), | |
1216 | 1134 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7856 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7856]]'), | |
1217 | 1135 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7856A | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7856A]]'), | |
1218 | 1136 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7857 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7857]]'), | |
1219 | 1137 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7920 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7920]]'), | |
1220 | 1138 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7921 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7921]]'), | |
1221 | 1139 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7922 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7922]]'), | |
1222 | 1140 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7950 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7950]]'), | |
1223 | 1141 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7951 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7951]]'), | |
1224 | 1142 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7952 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7952]]'), | |
1225 | 1143 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7953 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7953]]'), | |
1226 | 1144 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7954 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7954]]'), | |
1227 | 1145 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7957 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7957]]'), | |
1228 | 1146 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9559 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9559]]'), | |
1229 | 1147 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9565 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9565]]'), | |
1230 | 1148 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9568 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9568]]'), | |
1231 | 1149 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP9572 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP9572]]'), | |
0682218d | 1232 | 1150 => array ('chapter_id' => 30, 'dict_value' => '[[Cisco%GPASS%Catalyst 6509-V-E | http://www.cisco.com/en/US/products/ps9306/index.html]]'), |
7f194685 DO |
1233 | 1151 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7902J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7902J]]'), |
1234 | 1152 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7930J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7930J]]'), | |
1235 | 1153 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7932J | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7932J]]'), | |
1236 | 1154 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7900 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7900]]'), | |
1237 | 1155 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7901 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7901]]'), | |
1238 | 1156 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7902 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7902]]'), | |
1239 | 1157 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7930 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7930]]'), | |
1240 | 1158 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7931 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7931]]'), | |
1241 | 1159 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7932 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7932]]'), | |
1242 | 1160 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7911 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7911]]'), | |
1243 | 1161 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7940 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7940]]'), | |
1244 | 1162 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7941 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7941]]'), | |
1245 | 1163 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7960 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7960]]'), | |
1246 | 1164 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7961 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7961]]'), | |
1247 | 1165 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7968 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7968]]'), | |
1248 | 1166 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7990 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7990]]'), | |
1249 | 1167 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7991 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7991]]'), | |
1250 | 1168 => array ('chapter_id' => 27, 'dict_value' => '[[APC%GPASS%AP7998 | http://www.apc.com/products/resource/include/techspec_index.cfm?base_sku=AP7998]]'), | |
d1ff3272 DO |
1251 | 1169 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3108FG2 | http://www.apresia.jp/en/products/products/industrial/ap3108fg.html]]'), |
1252 | 1170 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT-HR2 | http://www.apresia.jp/en/products/products/industrial/ap3124gt_hr.html]]'), | |
1253 | 1171 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4348GT | http://www.apresia.jp/en/products/products/ent/solution/ap4348gt.html]]'), | |
1254 | 1172 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4348GT-PSR | http://www.apresia.jp/en/products/products/ent/solution/ap4348gt_psr.html]]'), | |
1255 | 1173 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4328GT | http://www.apresia.jp/en/products/products/ent/solution/ap4328gt.html]]'), | |
1256 | 1174 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia4224GT-PSR | http://www.apresia.jp/en/products/products/ent/solution/ap4224gt_psr.html]]'), | |
1257 | 1175 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2248G2 | http://www.apresia.jp/en/products/products/ent/solution/ap2248g.html]]'), | |
1258 | 1176 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124GT2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124gt.html]]'), | |
1259 | 1177 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124GT-SS2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124gt_ss.html]]'), | |
1260 | 1178 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia2124-SS2 | http://www.apresia.jp/en/products/products/ent/solution/ap2124_ss.html]]'), | |
1261 | 1179 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia13000-24GX-PSR | http://www.apresia.jp/en/products/products/ent/full/ap13000_24gxpsr.html]]'), | |
1262 | 1180 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia13000-48X | http://www.apresia.jp/en/products/products/ent/full/ap13000_48x.html]]'), | |
1263 | 1181 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3424GT-SS | http://www.apresia.jp/en/products/products/ent/full/ap3424gtss.html]]'), | |
1264 | 1182 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3424GT-PoE | http://www.apresia.jp/en/products/products/ent/full/ap3424gtpoe.html]]'), | |
1265 | 1183 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3248G-PSR2 | http://www.apresia.jp/en/products/products/ent/full/ap3248g_psr.html]]'), | |
1266 | 1184 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3248G2 | http://www.apresia.jp/en/products/products/ent/full/ap3248g.html]]'), | |
1267 | 1185 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT-PSR2 | http://www.apresia.jp/en/products/products/ent/full/ap3124gt_psr.html]]'), | |
1268 | 1186 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia3124GT2 | http://www.apresia.jp/en/products/products/ent/full/ap3124gt.html]]'), | |
1269 | 1187 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18020 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'), | |
1270 | 1188 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18008 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'), | |
1271 | 1189 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia18005 | http://www.apresia.jp/en/products/products/sp/ap18020.html]]'), | |
1272 | 1190 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia8007 | http://www.apresia.jp/en/products/products/sp/ap8007.html]]'), | |
1273 | 1191 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia8004 | http://www.apresia.jp/en/products/products/sp/ap8004.html]]'), | |
1274 | 1192 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia6148G-PSR | http://www.apresia.jp/en/products/products/sp/ap6148gpsr.html]]'), | |
1275 | 1193 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%Apresia6148GT-PSR | http://www.apresia.jp/en/products/products/sp/ap6148gtpsr.html]]'), | |
1276 | 1194 => array ('chapter_id' => 12, 'dict_value' => '[[Hitachi Cable%GPASS%VXC-1024FE | http://www.apresia.jp/en/products/products/sp/vxc1024fe.html]]'), | |
d9b88ea0 DO |
1277 | 1195 => array ('chapter_id' => 2, 'dict_value' => '100Base-FX'), |
1278 | 1196 => array ('chapter_id' => 2, 'dict_value' => '100Base-SX'), | |
1279 | 1197 => array ('chapter_id' => 2, 'dict_value' => '100Base-LX10'), | |
1280 | 1198 => array ('chapter_id' => 2, 'dict_value' => '100Base-BX10-D'), | |
1281 | 1199 => array ('chapter_id' => 2, 'dict_value' => '100Base-BX10-U'), | |
1282 | 1200 => array ('chapter_id' => 2, 'dict_value' => '100Base-EX'), | |
1283 | 1201 => array ('chapter_id' => 2, 'dict_value' => '100Base-ZX'), | |
1284 | 1202 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX'), | |
1285 | 1203 => array ('chapter_id' => 2, 'dict_value' => '1000Base-SX+'), | |
1286 | 1204 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX'), | |
1287 | 1205 => array ('chapter_id' => 2, 'dict_value' => '1000Base-LX/LH'), | |
1288 | 1206 => array ('chapter_id' => 2, 'dict_value' => '1000Base-BX10-D'), | |
1289 | 1207 => array ('chapter_id' => 2, 'dict_value' => '1000Base-BX10-U'), | |
3153a326 | 1290 | 1208 => array ('chapter_id' => 2, 'dict_value' => 'empty SFP-100'), |
d9b88ea0 DO |
1291 | 1209 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1470 (gray)'), |
1292 | 1210 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1490 (violet)'), | |
1293 | 1211 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1510 (blue)'), | |
1294 | 1212 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1530 (green)'), | |
1295 | 1213 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1550 (yellow)'), | |
1296 | 1214 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1570 (orange)'), | |
1297 | 1215 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1590 (red)'), | |
1298 | 1216 => array ('chapter_id' => 2, 'dict_value' => '1000Base-CWDM80-1610 (brown)'), | |
1299 | 1217 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-61.42 (ITU 20)'), | |
1300 | 1218 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-60.61 (ITU 21)'), | |
1301 | 1219 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-59.79 (ITU 22)'), | |
1302 | 1220 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-58.98 (ITU 23)'), | |
1303 | 1221 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-58.17 (ITU 24)'), | |
1304 | 1222 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-57.36 (ITU 25)'), | |
1305 | 1223 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-56.55 (ITU 26)'), | |
1306 | 1224 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-55.75 (ITU 27)'), | |
1307 | 1225 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-54.94 (ITU 28)'), | |
1308 | 1226 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-54.13 (ITU 29)'), | |
1309 | 1227 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-53.33 (ITU 30)'), | |
1310 | 1228 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-52.52 (ITU 31)'), | |
1311 | 1229 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-51.72 (ITU 32)'), | |
1312 | 1230 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-50.92 (ITU 33)'), | |
1313 | 1231 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-50.12 (ITU 34)'), | |
1314 | 1232 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-49.32 (ITU 35)'), | |
1315 | 1233 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-48.51 (ITU 36)'), | |
1316 | 1234 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-47.72 (ITU 37)'), | |
1317 | 1235 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-46.92 (ITU 38)'), | |
1318 | 1236 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-46.12 (ITU 39)'), | |
1319 | 1237 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-45.32 (ITU 40)'), | |
1320 | 1238 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-44.53 (ITU 41)'), | |
1321 | 1239 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-43.73 (ITU 42)'), | |
1322 | 1240 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-42.94 (ITU 43)'), | |
1323 | 1241 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-42.14 (ITU 44)'), | |
1324 | 1242 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-41.35 (ITU 45)'), | |
1325 | 1243 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-40.56 (ITU 46)'), | |
1326 | 1244 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-39.77 (ITU 47)'), | |
1327 | 1245 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-38.98 (ITU 48)'), | |
1328 | 1246 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-38.19 (ITU 49)'), | |
1329 | 1247 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-37.40 (ITU 50)'), | |
1330 | 1248 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-36.61 (ITU 51)'), | |
1331 | 1249 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-35.82 (ITU 52)'), | |
1332 | 1250 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-35.04 (ITU 53)'), | |
1333 | 1251 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-34.25 (ITU 54)'), | |
1334 | 1252 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-33.47 (ITU 55)'), | |
1335 | 1253 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-32.68 (ITU 56)'), | |
1336 | 1254 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-31.90 (ITU 57)'), | |
1337 | 1255 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-31.12 (ITU 58)'), | |
1338 | 1256 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-30.33 (ITU 59)'), | |
1339 | 1257 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-29.55 (ITU 60)'), | |
1340 | 1258 => array ('chapter_id' => 2, 'dict_value' => '1000Base-DWDM80-28.77 (ITU 61)'), | |
1341 | 1259 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-61.42 (ITU 20)'), | |
1342 | 1260 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-60.61 (ITU 21)'), | |
1343 | 1261 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-59.79 (ITU 22)'), | |
1344 | 1262 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-58.98 (ITU 23)'), | |
1345 | 1263 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-58.17 (ITU 24)'), | |
1346 | 1264 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-57.36 (ITU 25)'), | |
1347 | 1265 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-56.55 (ITU 26)'), | |
1348 | 1266 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-55.75 (ITU 27)'), | |
1349 | 1267 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-54.94 (ITU 28)'), | |
1350 | 1268 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-54.13 (ITU 29)'), | |
1351 | 1269 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-53.33 (ITU 30)'), | |
1352 | 1270 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-52.52 (ITU 31)'), | |
1353 | 1271 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-51.72 (ITU 32)'), | |
1354 | 1272 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-50.92 (ITU 33)'), | |
1355 | 1273 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-50.12 (ITU 34)'), | |
1356 | 1274 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-49.32 (ITU 35)'), | |
1357 | 1275 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-48.51 (ITU 36)'), | |
1358 | 1276 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-47.72 (ITU 37)'), | |
1359 | 1277 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-46.92 (ITU 38)'), | |
1360 | 1278 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-46.12 (ITU 39)'), | |
1361 | 1279 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-45.32 (ITU 40)'), | |
1362 | 1280 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-44.53 (ITU 41)'), | |
1363 | 1281 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-43.73 (ITU 42)'), | |
1364 | 1282 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-42.94 (ITU 43)'), | |
1365 | 1283 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-42.14 (ITU 44)'), | |
1366 | 1284 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-41.35 (ITU 45)'), | |
1367 | 1285 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-40.56 (ITU 46)'), | |
1368 | 1286 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-39.77 (ITU 47)'), | |
1369 | 1287 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-38.98 (ITU 48)'), | |
1370 | 1288 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-38.19 (ITU 49)'), | |
1371 | 1289 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-37.40 (ITU 50)'), | |
1372 | 1290 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-36.61 (ITU 51)'), | |
1373 | 1291 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-35.82 (ITU 52)'), | |
1374 | 1292 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-35.04 (ITU 53)'), | |
1375 | 1293 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-34.25 (ITU 54)'), | |
1376 | 1294 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-33.47 (ITU 55)'), | |
1377 | 1295 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-32.68 (ITU 56)'), | |
1378 | 1296 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-31.90 (ITU 57)'), | |
1379 | 1297 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-31.12 (ITU 58)'), | |
1380 | 1298 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-30.33 (ITU 59)'), | |
1381 | 1299 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-29.55 (ITU 60)'), | |
1382 | 1300 => array ('chapter_id' => 2, 'dict_value' => '10GBase-ZR-DWDM80-28.77 (ITU 61)'), | |
2437225c DO |
1383 | 1301 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-BR1410A'), |
1384 | 1302 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-BR1310G'), | |
1385 | 1303 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1252AG'), | |
1386 | 1304 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1252G'), | |
1387 | 1305 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1242AG'), | |
1388 | 1306 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1242G'), | |
1389 | 1307 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1231G'), | |
1390 | 1308 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1232AG'), | |
1391 | 1309 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1131AG'), | |
1392 | 1310 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1131G'), | |
1393 | 1311 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP1121G'), | |
1394 | 1312 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-AP521G'), | |
1395 | 1313 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC2106'), | |
1396 | 1314 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC526'), | |
1397 | 1315 => array ('chapter_id' => 25, 'dict_value' => 'Cisco%GPASS%AIR-WLC4402'), | |
93a83f51 | 1398 | 1316 => array ('chapter_id' => 2, 'dict_value' => '1000Base-T (Dell M1000e)'), |
c896eab9 DO |
1399 | 1317 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%SLES11'), |
1400 | 1318 => array ('chapter_id' => 13, 'dict_value' => 'Windows Server 2008'), | |
1401 | 1319 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Slackware 13.0'), | |
64a1c640 | 1402 | 1320 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Ubuntu 9.10'), |
7d69a266 | 1403 | 1321 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-EI-24S'), |
1b3abcdc | 1404 | 1322 => array ('chapter_id' => 2, 'dict_value' => 'AC-out'), |
63811a09 DO |
1405 | 1323 => array ('chapter_id' => 1, 'dict_value' => 'Voice/video'), |
1406 | 1324 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7816'), | |
1407 | 1325 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7825'), | |
1408 | 1326 => array ('chapter_id' => 28, 'dict_value' => 'Cisco%GPASS%MCS 7835'), | |
ad9da675 DO |
1409 | 1327 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2901 | http://www.cisco.com/en/US/products/ps10539/index.html]]'), |
1410 | 1328 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2911 | http://www.cisco.com/en/US/products/ps10540/index.html]]'), | |
1411 | 1329 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2921 | http://www.cisco.com/en/US/products/ps10543/index.html]]'), | |
1412 | 1330 => array ('chapter_id' => 17, 'dict_value' => '[[ Cisco%GPASS%2951 | http://www.cisco.com/en/US/products/ps10544/index.html]]'), | |
1413 | 1331 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%ALTLinux 5'), | |
1414 | 1332 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%RH Fedora 12 | http://docs.fedoraproject.org/release-notes/f12/en-US/html/]]'), | |
1415 | 1333 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Gentoo 10.0'), | |
1416 | 1334 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%Gentoo 10.1'), | |
f32167d2 DO |
1417 | 1335 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-EI'), |
1418 | 1336 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-PWR-EI'), | |
1419 | 1337 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-EI'), | |
1420 | 1338 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-PWR-EI'), | |
1421 | 1339 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-SI'), | |
1422 | 1340 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5328C-PWR-SI'), | |
1423 | 1341 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-SI'), | |
1424 | 1342 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5352C-PWR-SI'), | |
1425 | 1343 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5324TP-SI'), | |
1426 | 1344 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5324TP-PWR-SI'), | |
1427 | 1345 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5348TP-SI'), | |
1428 | 1346 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S5348TP-PWR-SI'), | |
24b8ff21 DO |
1429 | 1347 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960G-24PC'), |
1430 | 1348 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2350-48TD'), | |
4b43f713 | 1431 | 1349 => array ('chapter_id' => 12, 'dict_value' => '[[HP ProCurve%GPASS%2910al-48G | http://h10010.www1.hp.com/wwpc/uk/en/sm/WF06b/12883-12883-3445275-427605-427605-3901671-3901675.html]]'), |
4eeadb79 DO |
1432 | 1350 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 10'), |
1433 | 1351 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 11'), | |
1434 | 1352 => array ('chapter_id' => 14, 'dict_value' => 'ExtremeXOS 12'), | |
0891c041 DO |
1435 | 1353 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-24x | http://extremenetworks.com/products/summit-X480.aspx]]'), |
1436 | 1354 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-48t | http://extremenetworks.com/products/summit-X480.aspx]]'), | |
1437 | 1355 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X480-48x | http://extremenetworks.com/products/summit-X480.aspx]]'), | |
1438 | 1356 => array ('chapter_id' => 12, 'dict_value' => '[[Extreme Networks%GPASS%Summit X650 | http://extremenetworks.com/products/summit-x650.aspx]]'), | |
37ada55e DO |
1439 | 1357 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9303'), |
1440 | 1358 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9306'), | |
1441 | 1359 => array ('chapter_id' => 12, 'dict_value' => 'Huawei%GPASS%Quidway S9312'), | |
1442 | 1360 => array ('chapter_id' => 14, 'dict_value' => 'Huawei VRP 5.3'), | |
1443 | 1361 => array ('chapter_id' => 14, 'dict_value' => 'Huawei VRP 5.5'), | |
ec523868 DO |
1444 | 1362 => array ('chapter_id' => 12, 'dict_value' => '[[Brocade%GPASS%FCX 648 | http://www.brocade.com/sites/dotcom/products-solutions/products/ethernet-switches-routers/enterprise-mobility/product-details/fcx-series-data-center/index.page ]]'), |
1445 | 1363 => array ('chapter_id' => 14, 'dict_value' => 'IronWare 5'), | |
1446 | 1364 => array ('chapter_id' => 14, 'dict_value' => 'IronWare 7'), | |
1f54e1ba DO |
1447 | 1365 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 4.2'), |
1448 | 1366 => array ('chapter_id' => 14, 'dict_value' => 'JunOS 9'), | |
1449 | 1367 => array ('chapter_id' => 14, 'dict_value' => 'JunOS 10'), | |
73e1dc82 | 1450 | 1368 => array ('chapter_id' => 17, 'dict_value' => '[[Juniper%GPASS%MX80 | http://www.juniper.net/products_and_services/mx_series/index.html]]'), |
9f4aaadc | 1451 | 1369 => array ('chapter_id' => 14, 'dict_value' => 'Huawei VRP 5.7'), |
712010be | 1452 | 1370 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960-48PST-L'), |
fb3e70de DO |
1453 | 1371 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8024L2'), |
1454 | 1372 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8124PL2'), | |
1455 | 1373 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8126L2'), | |
1456 | 1374 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8150L2'), | |
1457 | 1375 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8612XL3'), | |
1458 | 1376 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8708L2'), | |
1459 | 1377 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8824M'), | |
1460 | 1378 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8848M'), | |
1461 | 1379 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8926EM'), | |
1462 | 1380 => array ('chapter_id' => 12, 'dict_value' => 'SMC%GPASS%8950EM'), | |
1e203519 RF |
1463 | 1381 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge%GPASS%R910'), |
1464 | 1382 => array ('chapter_id' => 18, 'dict_value' => 'Dell PowerVault%GPASS%MD1220'), | |
3bcdacf6 DO |
1465 | 1383 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48TD-L'), |
1466 | 1384 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-24TD-L'), | |
1467 | 1385 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48FPD-L'), | |
1468 | 1386 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48LPD-L'), | |
1469 | 1387 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-24PD-L'), | |
1470 | 1388 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48TS-L'), | |
1471 | 1389 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-24TS-L'), | |
1472 | 1390 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48TS-S'), | |
1473 | 1391 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-24TS-S'), | |
1474 | 1392 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48FPS-L'), | |
1475 | 1393 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-48LPS-L'), | |
1476 | 1394 => array ('chapter_id' => 12, 'dict_value' => 'Cisco%GPASS%Catalyst 2960S-24PS-L'), | |
4a7d7a42 | 1477 | 1395 => array ('chapter_id' => 13, 'dict_value' => '[[Linux%GSKIP%Debian 6.0 (squeeze) | http://debian.org/releases/squeeze/]]'), |
918a6f60 | 1478 | 1396 => array ('chapter_id' => 13, 'dict_value' => 'Linux%GSKIP%RHEL6'), |
ae67fa11 AD |
1479 | 1397 => array ('chapter_id' => 1, 'dict_value' => 'Power supply chassis'), |
1480 | 1398 => array ('chapter_id' => 1, 'dict_value' => 'Power supply'), | |
1481 | 1399 => array ('chapter_id' => 2, 'dict_value' => 'DC'), | |
1482 | 1400 => array ('chapter_id' => 34, 'dict_value' => 'Cisco%GPASS%RPS 2300'), | |
1483 | 1401 => array ('chapter_id' => 34, 'dict_value' => 'D-Link%GPASS%DPS-800'), | |
1484 | 1402 => array ('chapter_id' => 34, 'dict_value' => 'D-Link%GPASS%DPS-900'), | |
1485 | 1403 => array ('chapter_id' => 35, 'dict_value' => 'Cisco%GPASS%RPS 675'), | |
1486 | 1404 => array ('chapter_id' => 35, 'dict_value' => 'Cisco%GPASS%C3K-PWR-750WAC'), | |
1487 | 1405 => array ('chapter_id' => 35, 'dict_value' => 'Cisco%GPASS%C3K-PWR-1150WAC'), | |
1488 | 1406 => array ('chapter_id' => 35, 'dict_value' => 'D-Link%GPASS%DPS-200'), | |
1489 | 1407 => array ('chapter_id' => 35, 'dict_value' => 'D-Link%GPASS%DPS-500'), | |
1490 | 1408 => array ('chapter_id' => 35, 'dict_value' => 'D-Link%GPASS%DPS-510'), | |
1491 | 1409 => array ('chapter_id' => 35, 'dict_value' => 'D-Link%GPASS%DPS-600'), | |
9d708711 AA |
1492 | 1410 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 5.0'), |
1493 | 1411 => array ('chapter_id' => 14, 'dict_value' => 'Cisco NX-OS 5.1'), | |
d3821ec8 AA |
1494 | 1412 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 5548P | http://cisco.com/en/US/products/ps11215/index.html]]'), |
1495 | 1413 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 2224TP | http://cisco.com/en/US/products/ps11045/index.html]]'), | |
1496 | 1414 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 2248TP | http://cisco.com/en/US/products/ps10783/index.html]]'), | |
1497 | 1415 => array ('chapter_id' => 12, 'dict_value' => '[[Cisco%GPASS%Nexus 2232PP | http://cisco.com/en/US/products/ps10784/index.html]]'), | |
0682218d AD |
1498 | // ^ |
1499 | // ^ | |
1500 | // add new dictionary entries up here ^ | |
1501 | 1500 => array ('chapter_id' => 29, 'dict_value' => 'No'), | |
1502 | 1501 => array ('chapter_id' => 29, 'dict_value' => 'Yes'), | |
1503 | 1502 => array ('chapter_id' => 1, 'dict_value' => 'Server chassis'), | |
1504 | 1503 => array ('chapter_id' => 1, 'dict_value' => 'Network chassis'), | |
1505 | 1504 => array ('chapter_id' => 1, 'dict_value' => 'VM'), | |
1506 | 1505 => array ('chapter_id' => 1, 'dict_value' => 'VM Cluster'), | |
1507 | 1506 => array ('chapter_id' => 1, 'dict_value' => 'VM Resource Pool'), | |
1508 | 1507 => array ('chapter_id' => 1, 'dict_value' => 'VM Virtual Switch'), | |
1509 | 1508 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESX 3.5'), | |
1510 | 1509 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESXi 3.5'), | |
1511 | 1510 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESX 4.0'), | |
1512 | 1511 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESXi 4.0'), | |
1513 | 1512 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESX 4.1'), | |
1514 | 1513 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%VMware ESXi 4.1'), | |
1515 | 1514 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%XenServer 4.0'), | |
1516 | 1515 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%XenServer 5.0'), | |
1517 | 1516 => array ('chapter_id' => 13, 'dict_value' => 'Hypervisor%GSKIP%XenServer 5.5'), | |
1518 | 1517 => array ('chapter_id' => 31, 'dict_value' => 'Dell PowerEdge%GPASS%1855'), | |
1519 | 1518 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%1955'), | |
1520 | 1519 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M605'), | |
1521 | 1520 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M610'), | |
1522 | 1521 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M610x'), | |
1523 | 1522 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M710'), | |
1524 | 1523 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M805'), | |
1525 | 1524 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M905'), | |
1526 | 1525 => array ('chapter_id' => 11, 'dict_value' => 'Dell PowerEdge (blade)%GPASS%M910'), | |
1527 | 1526 => array ('chapter_id' => 26, 'dict_value' => 'Brocade (blade)%GPASS%McDATA 3014'), | |
1528 | 1527 => array ('chapter_id' => 26, 'dict_value' => 'Brocade (blade)%GPASS%McDATA 4314'), | |
1529 | 1528 => array ('chapter_id' => 26, 'dict_value' => 'Brocade (blade)%GPASS%McDATA 4416'), | |
1530 | 1529 => array ('chapter_id' => 26, 'dict_value' => 'Brocade (blade)%GPASS%M4424'), | |
1531 | 1530 => array ('chapter_id' => 26, 'dict_value' => 'Brocade (blade)%GPASS%M5424'), | |
1532 | 1531 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect (blade)%GPASS%5316M'), | |
1533 | 1532 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect (blade)%GPASS%M6220'), | |
1534 | 1533 => array ('chapter_id' => 12, 'dict_value' => 'Dell PowerConnect (blade)%GPASS%M8024'), | |
1535 | 1534 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%Catalyst 3130G'), | |
1536 | 1535 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%Catalyst 3130X'), | |
1537 | 1536 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6148-GE-TX'), | |
1538 | 1537 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6148A-GE-45AF'), | |
1539 | 1538 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6148A-GE-TX'), | |
1540 | 1539 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6408A-GBIC'), | |
1541 | 1540 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6416-GBIC'), | |
1542 | 1541 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6516A-GBIC'), | |
1543 | 1542 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6548-GE-TX'), | |
1544 | 1543 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6548-GE-45AF'), | |
1545 | 1544 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6704-10GE'), | |
1546 | 1545 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6708-10G-3C'), | |
1547 | 1546 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6708-10G-3CXL'), | |
1548 | 1547 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6716-10GT-3C'), | |
1549 | 1548 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6716-10GT-3CXL'), | |
1550 | 1549 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6724-SFP'), | |
1551 | 1550 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6748-GE-TX'), | |
1552 | 1551 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-X6748-SFP'), | |
1553 | 1552 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-SUP720-3B'), | |
1554 | 1553 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-XSUP720-3BX'), | |
1555 | 1554 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-SUP32-GE-3B'), | |
1556 | 1555 => array ('chapter_id' => 12, 'dict_value' => 'Cisco (blade)%GPASS%WS-SUP32-10GE-3B'), | |
1557 | 1556 => array ('chapter_id' => 32, 'dict_value' => 'VMware%GPASS%Standard vSwitch'), | |
1558 | 1557 => array ('chapter_id' => 32, 'dict_value' => 'VMware%GPASS%Distributed vSwitch'), | |
1559 | 1558 => array ('chapter_id' => 32, 'dict_value' => 'Cisco%GPASS%Nexus 1000V'), | |
1560 | 1559 => array ('chapter_id' => 33, 'dict_value' => 'NS-OS 4.0'), | |
d3821ec8 | 1561 | // NOTICE: do not add new dictionary entries here, add them to the gap above (~1415)! |
3fb336f6 DO |
1562 | ); |
1563 | ||
1564 | ?> |