diff options
author | Giovanni Condello <nanomad@users.noreply.github.com> | 2023-05-27 14:54:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-27 14:54:07 +0200 |
commit | 932b3176f4a9b3f90319522bc12de7d78da7b42f (patch) | |
tree | f36a3778b998f5dc740f426a841ee857a505b488 | |
parent | Update ont-zte-f601.md (#181) (diff) | |
download | hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar.gz hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar.bz2 hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar.lz hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar.xz hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.tar.zst hack-gpon.github.io-932b3176f4a9b3f90319522bc12de7d78da7b42f.zip |
-rw-r--r-- | _ont/ont-zyxel-pmg3000-d20b.md | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/_ont/ont-zyxel-pmg3000-d20b.md b/_ont/ont-zyxel-pmg3000-d20b.md index f5969d1..9da5ff9 100644 --- a/_ont/ont-zyxel-pmg3000-d20b.md +++ b/_ont/ont-zyxel-pmg3000-d20b.md @@ -131,6 +131,7 @@ exit hal set sn ALCLf0f0f0f0 ``` +Do not worry if you're missing one of the two commands, the change is still applied with just one of them. ## Setting ONU GPON PLOAM password {% include alert.html content="The PLOAM password is stored in the ASCII format." alert="Note" icon="svg-info" color="blue" %} @@ -141,7 +142,7 @@ set password PLOAMPASS ``` ## Setting OMCI software version (ME 7) -Edit the /var/config/ont.sys via vi directly on the stick itself. The file is CRLF terminated, one entry per line. +Edit `/var/config/ont.sys` via vi directly on the stick itself. The file is CRLF terminated, one entry per line. The entries for the software version are: ``` SW_VER0:0xabcdef @@ -155,6 +156,14 @@ manufactory set hardware version 3FE49165BFAA01 ``` +If the above command is missing you can edit `/var/config/ont.sys` via vi directly on the stick itself. The file is CRLF terminated, one entry per line. +The entry for the hardware version is: +``` +ONTG_VER:0x463630303556362e300000000000 +``` + +The hardware version must be encoded in hex format and right padded to 28 characters with 0 (excluding the starting 0x) to avoid any spurious values. + ## Setting OMCI equipment ID (ME 257) {% include alert.html content="Model number must not be more than 20 characters long in total." alert="Note" icon="svg-info" color="blue" %} ```sh @@ -165,6 +174,15 @@ omci equipment id MYEQUIPMENTID ``` +If any of the above commands is missing you can edit `/var/config/ont.sys` via vi directly on the stick itself. The file is CRLF terminated, one entry per line. +The entry for the equipment id is: +``` +ONTG_EQID:0x463630303556362E30000000000000000000000 +``` + +The equipment id must be encoded in hex format and right padded to 39 characters with 0 (excluding the starting 0x) to avoid any spurious values. + + # Advanced settings ## Reset Web Gui admin credentials |