Cisco router NBN HFC

Table of Contents

HI

 

I had a issue when a customer was moved over to a HFC NBN connection. It seems that you can not just use a PPPOE dialer you also have to have a vlan 100 tag on the FastEthernet port.

 

Here is the config if it saves some one some time.

config t

vlan 100
name NBN

interface FastEthernet3 –The port the NBN modem is plugged in to
description — Ethernet WAN —
switchport mode trunk
no ip address

interface Vlan100
description — WAN —
no ip address
ip nat outside
ip virtual-reassembly in
ip tcp adjust-mss 1452

pppoe enable group global
pppoe-client dial-pool-number 1

interface Dialer1
description — NBN HFC —
mtu 1492
ip address negotiated
ip mtu 1452
ip nat outside
ip virtual-reassembly in
encapsulation ppp
dialer pool 1
dialer string “*99#”
dialer-group 1
ppp authentication chap callin
ppp chap hostname xxx
ppp chap password xxx
ppp ipcp dns request accept
no cdp enable

To Connect to a IPoE like in FTTP

On the interface you have connected to the NTD.

interface GigabitEthernet0/0
ip address dhcp //this is for IPoE
ip access-group WAN_IN in //this is the inbound ACL
ip nat outside // if you are doing NAT (most likely)
duplex auto
speed auto
no cdp enable
!

These are the basics and should get you connected, you’ll need the NAT and routing added on top of this to serve your LAN

ip nat inside source list 101 interface GigabitEthernet0/0 overload   //basic NAT using access list 101
ip route 0.0.0.0 0.0.0.0 dhcp  //default route to the IP assigned by IPoE
!
access-list 101 permit ip 192.168.1.0 0.255.255.255 any  //Allow internal LAN for NAT

Again very basic and open setup, you will want much more for security.

 

This was tested on a 887VA running flash:c880data-universalk9-mz.151-4.M9.bin

Our Services