Hello All, is it possible on MT 4.x to use PPOE where each link has a seperate login?
From all appearances and poking at the documentation, since the MLPPP option needs the same password for each account it doesnt look possible the “Easy” way.
ISP provided a cisco config script where it creates 4 vlans and tunnels via seperate 10.x.x.x connections to different ip addresses on their end… Wondering if its possible to duplicate that?
Has anyone ran across something similiar before or would someone be available to assist converting to MT config?
Any advice or consultants would be appreciated.
note: edited their ips to protect the innocent 1.1.1.x is their ips.
Supposively they have in place/will shortly the ability to use L2TP PPPoE instead of vlans. they’re bouncing that around tech support but no answers yet.
(Q. The Cisco K9s are very expensive is there a plan to support other lower cost MLPPP devices such as the free Tomato OS or other lower cost routers such as Mikrotek?
A. Yes, when we moved all the VLAN users to PPPoE by the end of this year then we will place an order for extra fiber to setup L2TP PPPoE to support these lower cost MLPPP devices. L2TP = Layer2 tunnel protocol and it is dynamically setup each PPPoE connection on its own secure tunnel and in turn isolates each ADSL connection. There will be no more VLAN numbers to worry about. This isolation makes all the keep alive packets to its own connection so it will support the other lower cost MLPPP routers.)
TIA
vlan database
vlan 2 name ADSL2
vlan 3 name ADSL3
vlan 4 name ADSL4
exit
config t
service tcp-keepalives-in
service tcp-keepalives-out
service timestamps debug datetime localtime
service timestamps log datetime localtime
no service password-encryption
!
boot-start-marker
boot-end-marker
!
enable password cisco
!
no aaa new-model
!
resource policy
!
ip cef
!
! creating the 4 ADSL bonding tunnels
!
interface Tunnel10028
ip address 10.91.0.110 255.255.255.252
ip load-sharing per-packet
ip ospf mtu-ignore
keepalive 5 3
tunnel source Dialer1
tunnel destination 1.1.1.10
!
interface Tunnel20028
ip address 10.92.0.110 255.255.255.252
ip load-sharing per-packet
ip ospf mtu-ignore
keepalive 5 3
tunnel source Dialer2
tunnel destination 1.1.1.11
!
interface Tunnel30028
ip address 10.93.0.110 255.255.255.252
ip load-sharing per-packet
ip ospf mtu-ignore
keepalive 5 3
tunnel source Dialer3
tunnel destination 1.1.1.12
!
interface Tunnel40028
ip address 10.94.0.110 255.255.255.252
ip load-sharing per-packet
ip ospf mtu-ignore
keepalive 5 3
tunnel source Dialer4
tunnel destination 1.1.1.13
!
!
! setting up the k9 Ethernet ports and assign them to the vlans
interface FastEthernet0
description ADSL2
switchport access vlan 2
no shut
!
interface FastEthernet1
description ADSL3
switchport access vlan 3
no shut
!
interface FastEthernet2
description ADSL4
switchport access vlan 4
no shut
!
interface FastEthernet3
description LAN
no shut
!
interface FastEthernet4
description ADSL1
no ip address
ip virtual-reassembly
duplex auto
speed auto
pppoe enable group global
pppoe-client dial-pool-number 1
no shut
!
interface Vlan1
ip tcp adjust-mss 1380
no shut
!
interface Vlan2
description ADSL2
no ip address
ip virtual-reassembly
pppoe enable group global
pppoe-client dial-pool-number 2
no shut
!
interface Vlan3
description ADSL3
no ip address
ip virtual-reassembly
pppoe enable group global
pppoe-client dial-pool-number 3
no shut
!
interface Vlan4
description ADSL4
no ip address
ip virtual-reassembly
pppoe enable group global
pppoe-client dial-pool-number 4
no shut
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp authentication pap callin
ppp pap sent-username USERNAME1 password 0 PASSWORD1
!
interface Dialer2
ip address negotiated
ip mtu 1492
ip virtual-reassembly
encapsulation ppp
dialer pool 2
dialer-group 2
ppp authentication pap callin
ppp pap sent-username USERNAME2 password 0 PASSWORD2
!
interface Dialer3
ip address negotiated
ip mtu 1492
ip virtual-reassembly
encapsulation ppp
dialer pool 3
dialer-group 3
ppp authentication pap callin
ppp pap sent-username USERNAME3 password 0 PASSWORD3
!
interface Dialer4
ip address negotiated
ip mtu 1492
ip virtual-reassembly
encapsulation ppp
dialer pool 4
dialer-group 4
ppp authentication pap callin
ppp pap sent-username USERNAME4 password 0 PASSWORD4
!
router ospf 100
log-adjacency-changes
redistribute connected subnets route-map RDSTB-CON-TO-OSPF
redistribute static subnets route-map RDSTB-CON-TO-OSPF
network 10.90.0.0 0.0.255.255 area 0
network 10.91.0.0 0.0.255.255 area 0
network 10.92.0.0 0.0.255.255 area 0
network 10.93.0.0 0.0.255.255 area 0
network 10.94.0.0 0.0.255.255 area 0
distribute-list route-map OSPF-IN in
!
ip route 0.0.0.0 0.0.0.0 Dialer1 250
ip route 1.1.1.13 255.255.255.255 Dialer4
ip route 1.1.1.10 255.255.255.255 Dialer1
ip route 1.1.1.11 255.255.255.255 Dialer2
ip route 1.1.1.12 255.255.255.255 Dialer3
!
!
no ip http server
no ip http secure-server
!
!
ip prefix-list OSPF-IN seq 5 permit 0.0.0.0/0
ip prefix-list OSPF-IN seq 10 deny 0.0.0.0/0 le 32
ip prefix-list RDSTB-CON seq 10 deny 0.0.0.0/0 le 32
!
!
snmp-server community cisco-k9 RO
snmp-server trap-source Vlan1
!
route-map OSPF-IN permit 5
match ip address prefix-list OSPF-IN
!
route-map OSPF-IN deny 50
!
route-map RDSTB-CON-TO-OSPF permit 10
match ip address prefix-list RDSTB-CON
!
route-map RDSTB-CON-TO-OSPF deny 100
!
!
control-plane
!
!
line con 0
no modem enable
transport preferred none
line aux 0
! creating a telnet login with default password cisco
line vty 0 4
password k9pass
login
transport preferred none
!
scheduler max-task-time 5000
!
webvpn context Default_context
ssl authenticate verify all
!
no inservice
!
! exit back to the command prompt after programmed the k9
does anyone know if this is worth pursuing through a MT consultant or anyone who would be available to assist? rather not purchase a cisco router but that’s the options at this point. thanks!