Fidgety0205
Do I need to input GPON SN and PLOAM somewhere or is it a specific VLAN like at swisscom?
As you already found out from Hack-GPON – you first need to configure SN and PLOAM and afterwards you need a correct VLAN.
XGS-PON is shared medium like DOCSIS (i.e. HFC/Cable). You first need to get the access to the physical medium (SN+PLOAM gives you this). Once you have it, you need to use correct VLAN to get the IP address.
—
From my notes to configure the SFP module, a bunch of things to check if things are not working as they should:
#ONT>/traffic/pon/show onu
\------------------------- ONU INFO --------------------------
Onu id 16
sdThreshold: 0
sfThreshold: 0
TO1: 80000
TO2: 1
eqd: 5[...]5
Serial Number(vendor code): YCEC
Serial Number(sn): 4[...]9
Password: 43 [...] 30
Registration ID: 0x43[...]30000000000000000000000000000000000000000000000000
\------------------------- INFO END --------------------------
Make sure the ONU ID is between 0-32 (+/- 1). If you got a higher number like 90 or 110, it means your SN+PLOAM combination was not accepted and you are in temporary/registration mode.
/ # cat /userdata/scfg.txt
CHAR-ARRAY CFG_ID_PASSWD = {0x43,0x34,[...],0x30,0x31};
INT CFG_ID_PON_REGISTRATION_ID0 = 0x43[...]42;
INT CFG_ID_PON_REGISTRATION_ID1 = 0x34[...]30;
INT CFG_ID_PON_REGISTRATION_ID2 = 0x30[...]31;
In case `#ONT/system/misc>exeep_w8` is not enough and your PLOAM password is still not accepted, it may be worth setting also Registration ID to the same value. Even though according to the docs “Password” (set via exeep
) should be enough, for me I only got access when set also the Registration ID. This is not documented anywhere except a short note
There is a bug in the register_id
command in the misc
CLI option that changes the value of pon_passwd
(LOID Password) instead of register_id
(PLOAM).
Allegedly you can do it all using only
pon_passwd set 001122334455
register_id set 001122334455
exeep_w8 0 "001122334455"
but I did not manage to, I had to do it via the scfg.txt file.
—
Hopefully with all the above you manage to connect.