| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| start [2021/11/11 10:49] – [Welcome to NetModule Wiki] dodenhoeft | start [2025/04/29 09:10] (current) – [Welcome to NetModule Wiki] dodenhoeft |
|---|
| | [[faq:rma|RMA procedure]] | [[faq:support|Opening a support ticket]] |
| | |
| <html> | |
| <center></html> | |
| | |
| | |
| | |
| | [[faq:rma|RMA procedure]] | [[faq:support|Opening a support ticket]] | | |
| | |
| <html> | |
| </center></html> | |
| |
| |
| |
| ** | ** |
| |
| |
| <WRAP center round tip 85%> | <WRAP center round tip 85%> |
| [[faq:2g-3g-shutdown|All Informations about the upcoming discontinuations of 2G and 3G Networks can be found here. ]] | [[maintenance:modem-firmware-update|All Information about updating Modem Firmware U-Blox Toby L2xx can be found here]] |
| </WRAP> | </WRAP> |
| <WRAP center round tip 85%> | |
| [[maintenance:modem-firmware-update|All Information about updating Modem Firmware UBlox TobyL2xx can be found here]] | |
| </WRAP> | |
| | |
| ** | ** |
| | - [[documentation:|Documentation and Downloads]]: Product documentation such as user manual and outline drawings for the NetModule Routers. |
| | - [[installation:|Installation]]: Getting started, installation and commissioning of the device. |
| | - [[configuration:|Configuration and Deployment]]: Typical configuration of components such as WWAN, WLAN or VPN or link supervision. |
| | - [[development:|Software Development]]: Software extensions for NetModule Router Software using the [[sdk:|Software Development Kit (SDK)]], cross-compilation toolchain or LXC Virtualization or an unsupported Linux reference distribution. |
| | - [[monitoring:|Monitoring and Device Management"]]: Operation and monitoring, NMS, SNMP and [[faq:rma|RMA Procedure]]. |
| | - [[maintenance:|Maintenance and Update]]: Maintenance tasks such as software update and reconfiguration. |
| | - [[troubleshooting:|Troubleshooting and Tech Support]]: Error analysis, reading the system log, using debug tools, tech support and RMA. |
| | - [[faq:rma|RMA and Replacement]]: Hardware defect or upgrade to a new product. |
| | - [[app-notes:|Whitepapers]]: Full use cases such as Passenger WLAN. |
| | - [[faq-and-tools:|FAQ and Tools]]: FAQ, Tools and other helpers. |
| |
| |
| <php> | |
| $columns = 3; | |
| $tablestyle = "text-align:center;"; | |
| $tdstyle = "text-align:center; border-top:1px solid white; border-left:1px solid white; border-right: 10px solid white; border-bottom: 10px solid white; background-color:#ebf0f0; width:33%"; | |
| $image = "http://placehold.it/200x50"; | |
| $items = array( | |
| array("/documentation/", $image, "Documentation and Downloads", "Product documentation such as user manual and outline drawings for the NetModule Routers."), | |
| array("/installation/", $image, "Installation", "Getting started, installation and commissioning of the device."), | |
| array("/configuration/", $image, "Configuration and Deployment", "Typical configuration of components such as WWAN, WLAN or VPN or link supervision."), | |
| array("/development/", $image, "Software Development", "Software extensions for NetModule Router Software using the <a href=sdk/sdk>SDK</a>, <a href=development/toolchain>cross-compilation toolchain</a> or <a href=virtualisation/start>LXC Virtualization</a> or an unsupported Linux reference distribution."), | |
| array("/monitoring/", $image, "Monitoring and Device Management", "Operation and monitoring, NMS, SNMP."), | |
| array("/maintenance/", $image, "Maintenance and Update", "Maintenance tasks such as software update and reconfiguration."), | |
| array("/troubleshooting/", $image, "Troubleshooting and Tech Support", "Error analysis, reading the system log, using debug tools, tech support and RMA"), | |
| // array("/replacement", $image, "RMA and Replacement", "Hardware defect or upgrade to a new product."), | |
| array("/app-notes/", $image, "Application Notes", "Full use cases such as Passenger WLAN."), | |
| array("/faq-and-tools/", $image, "FAQ and Tools", "FAQ, Tools and other helpers"), | |
| ); | |
| if (empty($items)) { | |
| $items = array(); | |
| for ($i=1; $i<=9; $i++) { | |
| array_push($items, array("topic$i", $imgageserver . "100x50", "This is title # $i", "This is the description of item $i")); | |
| } | |
| } | |
| echo "<table style='$tablestyle'>\n"; | |
| foreach ($items as $key=>$item) { | |
| echo ($key % $columns == 0) ? "<tr>" : ""; | |
| echo "<td style='$tdstyle'>" . | |
| // "<p style='margin:8px;'><a href='$item[0]'><img src='$item[1]' title='$item[2]'></a></p>" . | |
| "<p style='margin:8px; font-weight: bold;'><a href='$item[0]'>$item[2]</a></p>" . | |
| "<p style='margin:8px;'>$item[3]</p></td>\n"; | |
| echo ($key % $columns == $columns-1) ? "</tr>\n" : ""; | |
| } | |
| echo "</table>\n"; | |
| |
| </php> | |
| |
| |
| |