Fading Coder

One Final Commit for the Last Sprint

Home > Tech > Content

Beijing Mobile Gigabit H3-2S ONT: Super Admin Password & IPTV Port to LAN Conversion

Tech 1

Enabling Telnet on the Computer

Ensure Telnet client is enabled (varies by OS; e.g., Windows: Turn Windows features on or off → enable Telnet Client).

Enabling Telnet on the ONT

In a web browser, navigate to: http://192.168.1.1/?usr=CMCCAdmin&psw=aDm8H%25MdA&cmd=1&telnet.gch

Telnet into the ONT

Open the terminal (or Run dialog) and execute:

telnet 192.168.1.1

Use credentials:

  • Username: CMCCAdmin
  • Password: aDm8H%MdA

After login, switch to root (password: aDm8H%MdA):

su

View encrypted credentials (optional, for verification):

vi /tmp/debug-decry-cfg
# Or use:
sidbg 1 DB p DevAuthInfo

Sample output (truncated for clarity):

<Tbl name="DevAuthInfo" RowCount="2">
  <Row No="0">
    <DM name="ViewName" val="IGD.AU1"/>
    <DM name="Pass" val="******"/>
    <DM name="Level" val="1"/>
    ...
  </Row>
  <Row No="1">
    <DM name="ViewName" val="IGD.AU2"/>
    <DM name="Pass" val="******"/>
    <DM name="Level" val="2"/>
    ...
  </Row>
</Tbl>

Updating the Super Admin Password

To set the super admin password (e.g., to CMCCAdmin) and save:

sidbg 1 DB set DevAuthInfo 0 Pass CMCCAdmin; sidbg 1 DB save

To permanently enable Telnet (optional):

# Enable Telnet service
sidbg 1 DB set TelnetCfg 0 TS_Enable 1
# Enable Telnet on LAN ports
sidbg 1 DB set TelnetCfg 0 Lan_Enable 1

# To disable Telnet (reverse):
# sidbg 1 DB set TelnetCfg 0 TS_Enable 0
# sidbg 1 DB set TelnetCfg 0 Lan_Enable 0

Save changes:

sidbg 1 DB save

Converting IPTV Port to LAN Port

  1. Login to ONT Web Interface Use username CMCCAdmin and the newly updated password.

  2. Modify IPTV Port Settings Navigate to: NetworkBroadband SettingsConnection Name3_IPTV_B_VID_1010

    • Uncheck Port Binding.
    • Change Service Type to Internet.
    • Click Apply (or Modify).
  3. Verify Port Connectivity Go to: StatusUser Side InfoDHCP Allocation Info Confirm the converted LAN port (e.g., LAN2) shows an active IP address.

Related Articles

Understanding Strong and Weak References in Java

Strong References Strong reference are the most prevalent type of object referencing in Java. When an object has a strong reference pointing to it, the garbage collector will not reclaim its memory. F...

Comprehensive Guide to SSTI Explained with Payload Bypass Techniques

Introduction Server-Side Template Injection (SSTI) is a vulnerability in web applications where user input is improper handled within the template engine and executed on the server. This exploit can r...

Implement Image Upload Functionality for Django Integrated TinyMCE Editor

Django’s Admin panel is highly user-friendly, and pairing it with TinyMCE, an effective rich text editor, simplifies content management significantly. Combining the two is particular useful for bloggi...

Leave a Comment

Anonymous

◎Feel free to join the discussion and share your thoughts.