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

Slow transfer speed through interfaces

$
0
0

Hello all,

 

New to the Ubiquiti family.  This is for my home network.  This might be a limitation\understanding or misconfiguration I have made.  However, when I try a file transfer of a 4 gig file from a desktop coming from eth1 (192.168.0.0) to a desktop on eth2 (172.16.0.0), it's topping out at around 30 MB/s.  When I hook up the same computers to use a VLAN connected to eth1 I do not have any slowness.  Averaging 115 MB\s.  Anyone seen this before? 

 

All NICs\Switch ports are using Auto Negotiation.  Status is showing 1000 Mbps Full

Router = ERPOE-5

VER = v1.9.0

 

No slowness

eth1 192.168.0.0

eth1.10 172.16.0.0 (VLAN)

 

Slowness

eth1 192.168.0.0

eth2 172.16.0.0

 

Config:

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 drop
        description "WAN to internal"
        enable-default-log
        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"
        enable-default-log
        rule 10 {
            action accept
            description "Allow established/related"
            state {
                established enable
                related enable
            }
        }
        rule 20 {
            action drop
            description "Drop invalid state"
            log enable
            state {
                invalid enable
            }
        }
        rule 21 {
            action accept
            description "Allow L2TP"
            destination {
                port 500,1701,4500
            }
            log disable
            protocol udp
        }
        rule 22 {
            action accept
            description "Allow ESP"
            log disable
            protocol esp
        }
    }
    receive-redirects disable
    send-redirects enable
    source-validation disable
    syn-cookies enable
}
interfaces {
    ethernet eth0 {
        address dhcp
        description Internet
        duplex auto
        firewall {
            in {
                name WAN_IN
            }
            local {
                name WAN_LOCAL
            }
        }
        poe {
            output off
        }
        speed auto
    }
    ethernet eth1 {
        address 192.168.0.1/24
        description "Home Network"
        duplex auto
        poe {
            output off
        }
        speed auto
        vif 10 {
            address 10.10.10.1/24
            description "VLAN Subnet /10"
        }
    }
    ethernet eth2 {
        address 172.16.0.1/24
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    ethernet eth3 {
        disable
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    ethernet eth4 {
        address 192.168.2.1/24
        description Xbox
        duplex auto
        poe {
            output off
        }
        speed auto
    }
    loopback lo {
    }
    switch switch0 {
        description Local
        mtu 1500
    }
}

protocols {
    static {
    }
}
service {
    dhcp-server {
        disabled false
        hostfile-update disable
        shared-network-name HomeNetwork {
            authoritative enable
            subnet 192.168.0.0/24 {
                default-router 192.168.0.1
                dns-server 208.67.222.222
                dns-server 208.67.220.220
                lease 86400
                start 192.168.0.100 {
                    stop 192.168.0.150
                }

shared-network-name Xbox {
            authoritative disable
            subnet 192.168.2.0/24 {
                default-router 192.168.2.1
                dns-server 8.8.8.8
                dns-server 8.8.4.4
                lease 86400
                start 192.168.2.25 {
                    stop 192.168.2.30
                }
                static-mapping Xbox-SystemOS {
                    ip-address 192.168.2.25
                    mac-address 28:18:78:e8:81:cc
                }
            }
        }
        use-dnsmasq disable
    }
    dns {
        forwarding {
            cache-size 150
            listen-on eth1
            listen-on switch0
        }
    }
    gui {
        http-port 80
        https-port 443
        older-ciphers enable
    }
    nat {
        rule 5010 {
            description "masquerade for WAN"
            outbound-interface eth0
            type masquerade
        }
    }
    ssh {
        port 22
        protocol-version v2
    }
    ubnt-discover {
        disable
    }
    upnp2 {
        listen-on eth4
        listen-on eth1
        nat-pmp disable
        secure-mode disable
        wan eth0
    }
}
system {
    host-name ubnt
    login {
        user {
            authentication {
                encrypted-password
                plaintext-password ""
            }
            level admin
        }
        user {
            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 {
        }
    }
    offload {
        hwnat disable
        ipv4 {
            forwarding enable
            gre enable
            pppoe enable
            vlan enable
        }
        ipv6 {
            forwarding enable
            vlan enable
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
        host 192.168.0.133 {
            facility all {
                level notice
            }
        }
    }
    time-zone America/New_York
    traffic-analysis {
        dpi enable
        export enable
    }
}
vpn {
    ipsec {
        auto-firewall-nat-exclude disable
        ipsec-interfaces {
            interface eth0
        }
        nat-networks {
            allowed-network 10.10.10.0/24 {
            }
            allowed-network 192.168.0.0/24 {
            }
        }
        nat-traversal enable
    }
    l2tp {
        remote-access {
            authentication {
                local-users {
                    username {
                        password 
                    }
                    username {
                        password 
                    }
                }
                mode local
            }
            client-ip-pool {
                start 192.168.100.101
                stop 192.168.100.110
            }
            dhcp-interface eth0
            dns-servers {
                server-1 208.67.222.222
                server-2 208.67.220.220
            }
            ipsec-settings {
                authentication {
                    mode pre-shared-secret
                    pre-shared-secret 
                }
                ike-lifetime 3600
            }
            mtu 1492
        }
    }
}

 


Viewing all articles
Browse latest Browse all 20028

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>