summaryrefslogtreecommitdiffstats
path: root/_tools/gpon-omci-vlan-parser.md
diff options
context:
space:
mode:
authorErnesto Castellotti <mail@ernestocastellotti.it>2023-03-23 20:53:46 +0100
committerGitHub <noreply@github.com>2023-03-23 20:53:46 +0100
commit62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e (patch)
tree610a3368eb96ceedd2ded2ce609c862fc7c83b0a /_tools/gpon-omci-vlan-parser.md
parentUpdate ont-cig-g-97cp.md (#166) (diff)
downloadhack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar.gz
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar.bz2
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar.lz
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar.xz
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.tar.zst
hack-gpon.github.io-62a3ffc3084d8aca2ec7f21f6c75ce13bca7129e.zip
Diffstat (limited to '_tools/gpon-omci-vlan-parser.md')
-rw-r--r--_tools/gpon-omci-vlan-parser.md79
1 files changed, 79 insertions, 0 deletions
diff --git a/_tools/gpon-omci-vlan-parser.md b/_tools/gpon-omci-vlan-parser.md
new file mode 100644
index 0000000..77c5b6b
--- /dev/null
+++ b/_tools/gpon-omci-vlan-parser.md
@@ -0,0 +1,79 @@
+---
+title: GPON OMCI VLAN Table parser
+has_children: false
+description: Tool for parse the GPON OMCI VLAN Table (ME 171)
+layout: default
+---
+
+<h1>VLAN TABLE PARSER</h1>
+<form id="vlan-table-parser" novalidate>
+ <div class="form-floating mb-3">
+ <input type="text" class="form-control" placeholder="VLAN TABLE in HEX" name="vlan-table-hex" id="vlan-table-hex" required>
+ <label for="vlan-table-hex">VLAN TABLE in HEX</label>
+ <div class="invalid-feedback">
+ Please provide a valid input text.
+ </div>
+ </div>
+ <div class="mb-3">
+ <input type="submit" class="btn btn-primary" value="Decode!">
+ </div>
+ <div class="form-floating mb-3" id="to-place-table"></div>
+</form>
+
+<script type="text/javascript" src="/assets/js/omci-vlan.js"></script>
+<script>
+ function fillVlanTable(table, vlanTableRule) {
+ const tableNames = ["Filter outer priority",
+ "Filter outer VID",
+ "Filter outer TPID",
+ "Filter inner priority",
+ "Filter inner VID",
+ "Filter inner TPID",
+ "Filter ether type",
+ "Treatment tags to remove",
+ "Treatment outer priority",
+ "Treatment outer VID",
+ "Treatment outer TPID",
+ "Treatment inner priority",
+ "Treatment inner VID",
+ "Treatment inner TPID"];
+
+
+ for (var j = 0; j < 14; j++) {
+ var row = table.insertRow(j);
+ var cell1 = row.insertCell(0);
+ var cell2 = row.insertCell(1);
+
+ cell1.innerHTML = tableNames[j];
+ cell2.innerHTML = vlanTableRule[j];
+ }
+ }
+
+ function makeVlanTables(formToPlaceTable, vlanTable) {
+ for (const vlanRule of vlanTable) {
+ var div = document.createElement('div');
+ div.classList = "table-wrapper";
+ var table = document.createElement('table');
+ div.appendChild(table);
+ fillVlanTable(table, vlanRule);
+ formToPlaceTable.appendChild(div);
+ }
+ }
+
+ var vlanTableForm = document.getElementById('vlan-table-parser');
+ vlanTableForm.addEventListener('submit',(event) => {
+ if (!vlanTableForm.checkValidity()) {
+ event.preventDefault();
+ [...vlanTableForm.elements].map(e => e.parentNode).forEach(e => e.classList.toggle('was-validated', true));
+ } else {
+ event.preventDefault();
+ [...vlanTableForm.elements].map(e => e.parentNode).forEach(e => e.classList.toggle('was-validated', false));
+ var fomrdata = new FormData(vlanTableForm);
+ const hexString = fomrdata.get('vlan-table-hex');
+ const vlanTable = vlanTableParse(hexString);
+ const formToPlaceTable = document.getElementById('to-place-table');
+ formToPlaceTable.innerHTML = '';
+ makeVlanTables(formToPlaceTable, vlanTable);
+ }
+ });
+</script>