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

Lan1 Full Speed, Lan2 Half Speed - Help!

$
0
0

Hi everyone,

 

I'm having this weird issue where Lan1 is getting full speeds but my Lan2 is half the speed and it looks weird when it downloads (lots of ups and downs for the graph). 

 

Screen Shot 2016-06-21 at 11.32.51.pngScreen Shot 2016-06-21 at 11.30.34.png

 

Here's my current configuration. Can anyone help me understand why Lan2 is getting half the download? I'm doing the 1 WAN on Eth1 and 2 Lan on Eth0 and Eth2.

 

firewall {                                                                        
    name WAN_IN {                                                                 
        default-action drop                                                       
        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 drop                                                       
        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 {                                                               
        }                                                                         
    }                                                                             
}                                                                                 
interfaces {                                                                      
    ethernet eth0 {                                                               
        address 192.168.1.1/24
        description "Local 2"                                                     
        poe {                                                                     
            output off                                                            
        }                                                                         
    }                                                                             
    ethernet eth1 {                                                               
        description "Internet (PPPoE)"                                            
        poe {                                                                     
            output off                                                            
        }                                                                         
        pppoe 0 {                                                                 
            firewall {                                                            
                in {                                                              
                    name WAN_IN                                                   
                }                                                                 
                local {                                                           
                    name WAN_LOCAL                                                
                }                                                                 
            }                                                                     
            password ****************                                             
            user-id ***************                                       
        }                                                                         
        vif 201 {
            mtu 1500                                                              
        }                                                                         
    }                                                                             
    ethernet eth2 {                                                               
        description Local                                                         
        poe {                                                                     
            output off                                                            
        }                                                                         
    }                                                                             
    ethernet eth3 {                                                               
        description Local                                                         
        poe {                                                                     
            output off                                                            
        }                                                                         
    }                                                                             
    ethernet eth4 {                                                               
        description Local                                                         
        poe {                                                                     
            output off                                                            
        }                                                                         
    }                                                                             
    loopback lo {                                                                 
    }
    switch switch0 {                                                              
        address 192.168.2.1/24                                                    
        description Local                                                         
        switch-port {                                                             
            interface eth2                                                        
            interface eth3                                                        
            interface eth4                                                        
        }                                                                         
    }                                                                             
}                                                                                 
port-forward {                                                                    
    auto-firewall enable                                                          
    hairpin-nat enable                                                            
    lan-interface eth1                                                            
    wan-interface pppoe0                                                          
}                                                                                 
service {                                                                         
    dhcp-server {                                                                 
        shared-network-name LAN1 {                                                
            subnet 192.168.1.0/24 {                                               
                default-router 192.168.1.1                                        
                dns-server 192.168.1.1                                            
                start 192.168.1.21 {
                    stop 192.168.1.240                                            
                }                                                                 
            }                                                                     
        }                                                                         
        shared-network-name LAN2 {                                                
            subnet 192.168.2.0/24 {                                               
                default-router 192.168.2.1                                        
                dns-server 192.168.2.1                                            
                start 192.168.2.21 {                                              
                    stop 192.168.2.240                                            
                }                                                                 
            }                                                                     
        }                                                                         
    }                                                                             
    dns {                                                                         
        forwarding {                                                              
            listen-on eth0                                                        
            listen-on switch0                                                     
        }                                                                         
    }                                                                             
    gui {                                                                         
    }                                                                             
    nat {
        rule 5010 {                                                               
            outbound-interface pppoe0                                             
            type masquerade                                                       
        }                                                                         
    }                                                                             
    ssh {                                                                         
    }                                                                             
}                                                                                 
system {                                                                          
    login {                                                                       
        user ubnt {                                                               
            authentication {                                                      
                encrypted-password ****************                               
            }                                                                     
            level admin                                                           
        }                                                                         
    }                                                                             
    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                                                       
            }                                                                     
        }                                                                         
    }                                                                             
}     

Viewing all articles
Browse latest Browse all 20028

Trending Articles