Quantcast
Viewing all articles
Browse latest Browse all 20028

EdgeRouter POE - Very Slow upload speeds on a Simple Setup

Internet connection is 350mbps down, 18.1mbps up when directly wired to the modem.

 

Through the EdgeRouter POE I get 325.8mbps down, 5.95mbps up.

 

WAN (to Internet) is Eth0.

Eth1 is disabled.

Eth2 is my testing PC wired.

Eth3 goes to a bunch of household devices (TV's, Tivos, Roku's etc)

Eth4 goes to a Unifi AP 

 

The Unifi AP can get around 18mbps upload, so something is fishy there.

 

Running Edgerouter POE EdgeOSv1.8.5

 

I'm really not doing anything complicated.  Its about as bare-bones as you can get.

 

Here are my settings:

 

firewall {
    all-ping enable
    broadcast-ping disable
    group {
    }
    ipv6-receive-redirects disable
    ipv6-src-route disable
    ip-src-route disable
    log-martians enable
    name WAN_IN {
        default-action drop
        description "From Internet to LAN"
        rule 2 {
            action accept
            description "Allow established/related"
            log disable
            protocol all
            state {
                established enable
                related enable
            }
        }
        rule 3 {
            action drop
            description "Drop invalid state"
            log disable
            protocol all
            state {
                invalid enable
            }
        }
    }
    name WAN_LOCAL {
        default-action drop
        description "From Internet to Router"
        rule 10 {
            action accept
            description "Allow established/related"
            log disable
            protocol all
            state {
                established enable
                related enable
            }
        }
        rule 20 {
            action drop
            description "Drop invalid state"
            log disable
            protocol all
            state {
                invalid enable
            }
        }
    }
    options {
        mss-clamp {
            interface-type all
            mss 1412
        }
    }
    receive-redirects disable
    send-redirects enable
    source-validation disable
    syn-cookies enable
}
interfaces {
    ethernet eth0 {
        address dhcp
        address dhcpv6
        description Internet
        duplex auto
        firewall {
            in {
                name WAN_IN
            }
            local {
                name WAN_LOCAL
            }
        }
        poe {
            output off
        }
        speed auto
    }
    ethernet eth1 {
        address 192.168.2.1/24
        description "Local SubNet A"
        disable
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    ethernet eth2 {
        description "Local SubNet B"
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    ethernet eth3 {
        description "Local SubNet B"
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    ethernet eth4 {
        description "Local SubNet B"
        duplex auto
        poe {
            output 24v
        }
        speed auto
    }
    loopback lo {
    }
    switch switch0 {
        address 192.168.1.1/24
        description "Local SubNet B Switch"
        mtu 1500
        switch-port {
            interface eth2 {
            }
            interface eth3 {
            }
            interface eth4 {
            }
            vlan-aware disable
        }
    }
}
port-forward {
    auto-firewall enable
    hairpin-nat disable
    lan-interface switch0
    wan-interface eth0
}
service {
    dhcp-server {
        disabled false
        hostfile-update disable
        shared-network-name LAN2 {
            authoritative disable
            subnet 192.168.1.0/24 {
                default-router 192.168.1.1
                dns-server 192.168.1.1
                dns-server 8.8.8.8
                lease 86400
                start 192.168.1.100 {
                    stop 192.168.1.254
                }
                static-mapping AC1 {
                    ip-address 192.168.1.11
                    mac-address xx:xx:xx:xx:xx:xx
                }
                static-mapping AC2 {
                    ip-address 192.168.1.12
                    mac-address xx:xx:xx:xx:xx:xx
                }
                static-mapping PC1 {
                    ip-address 192.168.1.200
                    mac-address xx:xx:xx:xx:xx:xx
                }
                static-mapping PC2 {
                    ip-address 192.168.1.201
                    mac-address xx:xx:xx:xx:xx:xx
                }
                static-mapping iPad {
                    ip-address 192.168.1.21
                    mac-address xx:xx:xx:xx:xx:xx
                }
                static-mapping iPhone {
                    ip-address 192.168.1.20
                    mac-address xx:xx:xx:xx:xx:xx
                }
            }
        }
    }
    dns {
        forwarding {
            cache-size 150
            listen-on switch0
        }
    }
    gui {
        http-port 80
        https-port 443
        listen-address 192.168.2.1
        listen-address 192.168.1.1
        older-ciphers enable
    }
    nat {
        rule 5010 {
            description "masquerade for WAN"
            log disable
            outbound-interface eth0
            protocol all
            type masquerade
        }
    }
    ssh {
        listen-address 192.168.2.1
        listen-address 192.168.1.1
        port 22
        protocol-version v2
    }
}
system {
    host-name Edge
    login {
        user admin {
            authentication {
                encrypted-password 
                plaintext-password ""
            }
            level admin
        }
    }
    name-server 8.8.8.8
    name-server 8.8.4.4
    name-server 2001:4860:4860::8888
    name-server 2001:4860:4860::8844
    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 America/Chicago
}


/* Warning: Do not remove the following line. */
/* === vyatta-config-version: "config-management@1:conntrack@1:cron@1:dhcp-relay@1:dhcp-server@4:firewall@5:ipsec@5:nat@3:qos@1:quagga@2:system@4:ubnt-pptp@1:ubnt-util@1:vrrp@1:webgui@1:webproxy@1:zone-policy@1" === */
/* Release version: v1.8.5.4884695.160608.1057 */

 

 


Viewing all articles
Browse latest Browse all 20028

Trending Articles