Cisco OLT Configuration Commands
--------------------------------
1. Initial Setup
----------------
enable
configure terminal
hostname [OLT_Name]
no ip domain-lookup
2. Network Interface Configuration (Uplink)
-------------------------------------------
interface TenGigabitEthernet 0/1
description Uplink to Core Router
switchport mode trunk
switchport trunk allowed vlan all
no shutdown
3. PON Port Configuration
--------------------------
interface gpon 0/1
description GPON Port 1
no shutdown
4. ONU Registration
-------------------
pon onu add gpon 0/1 onu-id 1 sn GPON12345678
description ONU at Customer Site A
5. VLAN and Service Profiles
-----------------------------
vlan 100
name Internet
vlan 200
name Voice
onu profile create internet-profile
  vlan 100
  service internet
exit
interface gpon 0/1 onu 1
  onu-profile apply internet-profile
6. QoS and Traffic Shaping
---------------------------
policy-map CUSTOMER-QOS
  class class-default
    police 20 Mbps
7. Save Configuration
----------------------
write memory