You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ONT seems to be supporting a PLOAM password up to 288 bits in lenghth (36 ASCII characters, 72 Hex digits).
352
+
353
+
The PLOAM password is stored into 32 bit chunks (4 ASCII characters / 8 Hex digits), each byte swapped.
354
+
355
+
So, starting from the following PLOAM in ASCII format
356
+
357
+
```
358
+
A1B2C3D4E5
359
+
```
360
+
361
+
It gets translated into the following HEX value:
362
+
363
+
```
364
+
0x41314232433344344535
365
+
```
366
+
367
+
Which is then split into the following blocks (the last block gets padded with 0 to reach 8 digits)
368
+
369
+
```
370
+
BLOCK 0: 0x41314232
371
+
BLOCK 1: 0x43334434
372
+
BLOCK 2: 0x45350000
373
+
```
374
+
375
+
Each block is then byte swapped (i.e. read each sequence of two digits from right to left)
376
+
377
+
```
378
+
BLOCK 0: 0x32423141
379
+
BLOCK 1: 0x34443343
380
+
BLOCK 2: 0x00003545
381
+
```
382
+
383
+
And then you can finally persist it by changing the configuration file
384
+
385
+
```sh
386
+
# vi /config/scfg.txt
387
+
```
388
+
389
+
Append lines below to the file and save it to change the PLOAM password
390
+
391
+
```
392
+
INT CFG_ID_PON_REGISTRATION_ID0 = 0x32423141;
393
+
INT CFG_ID_PON_REGISTRATION_ID1 = 0x34443343;
394
+
INT CFG_ID_PON_REGISTRATION_ID2 = 0x00003545;
395
+
```
396
+
397
+
Reboot the ONT to apply the change.
398
+
310
399
311
400
## Setting ONU GPON LOID and LOID password
312
401
@@ -330,7 +419,7 @@ Reboot ONT to apply the change
330
419
331
420
```sh
332
421
# fw_setenv img_version0 20220527052622
333
-
# fw_setenv img_version0 20220527052622
422
+
# fw_setenv img_version1 20220527052622
334
423
```
335
424
336
425
Reboot ONT to apply the change
@@ -381,8 +470,6 @@ Reboot ONT to apply the change
381
470
382
471
## Changing OMCC Version
383
472
384
-
{% include alert.html content="In Italy, if you are under some Huawei OLT it's mandatory to use 0xA3, while on Alcatel 0xB4, otherwise you will get O5 status but no MIBs - Note that this can be quirk of TIM Italy" alert="Warning" icon="svg-warning" color="red" %}
0 commit comments