Router#configure terminal
!Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface ethernet 0
Router(config)#no ip http server
!You may change the Lan Interface specifications to your requirements (i.e. 192.168.0.0 255.255.255.0). This must match the ACL below
Router(config-if)#ip address 10.10.10.1 255.255.255.0
Router(config-if)#ip nat inside
Router(config-if)#no shutdown
Router(config-if)#exit
Router(config)#interface dialer 0
!Westnet Static i.p. addresses are auto-assigned. Corresppondingly, We recommend that you allow your router to accept any address assigned to it
Router(config-if)#ip address negotiated
!Continue with the rest of command
Router(config-if)#ip nat outside
Router(config-if)#encapsulation ppp
Router(config-if)#dialer pool 1
Router(config-if)#ppp pap sent-username <username> password <password>
Router(config-if)#exit
Router(config)#interface atm 0
Router(config-if)#pvc <VPI/VCI>
Router(config-if-atm-vc)#en aal5mux ppp dialer
Router(config-if-atm-vc)#dialer pool-member 1
Router(config-if-atm-vc)#no shutdown
Router(config-if)#exit
Router(config)#ip nat inside source list 1 interface dialer 0 overload
Router(config)#ip route 0.0.0.0 0.0.0.0 dialer 0
!Continue with the rest of command
!You may change the ACL to your requirements (i.e. 192.168.0.0 0.0.0.255). This must match the LAN interface above
Router(config)#access-list 1 permit 10.10.10.0 0.0.0.255
Router(config)#exit
Router#Write
!Building configuration...
!\[OK]
!Router#