Quantcast
Channel: EdgeRouter topics
Viewing all articles
Browse latest Browse all 20028

Edgerouter X PPPoE won't connect

$
0
0

Hi,

I just can't seem to connect my edgrouter to my modem/internet. I have my modem set in bridge mode and the PPPoe settings configured but it just sits there "disconnected".

 

Really need some help as I'm at a loss.

 

 

Config if it sheds any light

firewall {                                                                       
     all-ping enable                                                              
     broadcast-ping disable                                                       
     ipv6-receive-redirects disable                                               
     ipv6-src-route disable                                                       
     ip-src-route disable                                                         
     log-martians enable                                                          
     name WAN_IN {                                                                
         default-action accept                                                    
         description "WAN to internal"                                            
         rule 10 {                                                                
             action accept                                                        
             description "Allow established/related"                              
             state {                                                              
                 established enable                                               
                 related enable                                                   
             }                                                                    
         }                                                                        
         rule 20 {                                                                
             action drop                                                          
             description "Drop invalid state"                                     
             state {                                                              
                 invalid enable                                                   
             }
         }
     }
     name WAN_LOCAL {
         default-action accept
         description "WAN to router"
         rule 10 {
             action accept
             description "Allow established/related"
             state {
                 established enable
                 related enable
             }
         }
         rule 20 {
             action drop
             description "Drop invalid state"
             state {
                 invalid enable
             }
         }
     }
     options {
         mss-clamp {
             mss 1412
         }
     }
     receive-redirects disable
     send-redirects enable
     source-validation disable
     syn-cookies enable
 }
 interfaces {
     ethernet eth0 {
         address dhcp
         description "Internet (PPPoE)"
         duplex auto
         poe {
             output off
         }
         pppoe 0 {
             default-route auto
             firewall {
                 in {
                     name WAN_IN
                 }
                 local {
                     name WAN_LOCAL
                 }
             }
             mtu 1492
             name-server auto
             password BT
             user-id furbys@btbroadband.com
         }
         speed auto
     }
     ethernet eth1 {
         description Local
         duplex auto
         speed auto
     }
     ethernet eth2 {
         description Local
         duplex auto
         speed auto
     }
     ethernet eth3 {
         description Local
         duplex auto
         poe {
             output 24v
         }
         speed auto
     }
     ethernet eth4 {
         description Local
         duplex auto
         poe {
             output 24v
         }
         speed auto
     }
     ethernet eth5 {
         duplex auto
         speed auto
     }
     loopback lo {
     }
     switch switch0 {
         address 192.168.1.1/24
         description Local
         mtu 1500
         switch-port {
             interface eth1
             interface eth2
             interface eth3
             interface eth4
         }
     }
 }
 service {
     dhcp-server {
         disabled false
         hostfile-update disable
         shared-network-name LAN {
             authoritative disable
             subnet 192.168.1.0/24 {
                 default-router 192.168.1.1
                 dns-server 192.168.1.1
                 lease 86400
                 start 192.168.1.38 {
                     stop 192.168.1.243
                 }
                 static-mapping Downstairs_UniFi {
                     ip-address 192.168.1.101
                     mac-address 44:d9:e7:f2:62:b1
                 }
                 static-mapping Upstair_UniFi {
                     ip-address 192.168.1.100
                     mac-address 44:d9:e7:f2:62:5d
                 }
             }
         }
     }
     dns {
         forwarding {
             cache-size 150
             listen-on eth0
         }
     }
     gui {
         https-port 443
     }
     nat {
         rule 5010 {
             description "masquerade for WAN"
             outbound-interface pppoe0
             type masquerade
         }
     }
     ssh {
         port 22
         protocol-version v2
     }
 }
 system {
     host-name ubnt
     login {
         user ubnt {
             authentication {
mXrEVgMVxh0L98oKL3ocGNJGN4AUJuo0v4XmRsqyAsELXXyr/utLlt0ZBc4g0
             }
             level admin
         }
     }
     name-server 8.8.8.8
     name-server 8.8.4.4
     ntp {
         server 0.ubnt.pool.ntp.org {
         }
         server 1.ubnt.pool.ntp.org {
         }
         server 2.ubnt.pool.ntp.org {
         }
         server 3.ubnt.pool.ntp.org {
         }
     }
     syslog {
         global {
             facility all {
                 level notice
             }
             facility protocols {
                 level debug
             }
         }
     }
     time-zone UTC
 }
 

Viewing all articles
Browse latest Browse all 20028

Trending Articles