Quantcast
Channel: All EdgeRouter posts
Viewing all articles
Browse latest Browse all 60861

EdgeRouter Lite Settings for Gigabit ISP

$
0
0

Hello everyone,

 

Just today I got a symmetric gigabit ISP, however when my traffic goes through my router, there is a definite hit taken on the speed.  The best I've gotten through my router is about 400 Mbps Up/Down.  If I plug in directly into the Ethernet cable that they have coming in, I am able to get speeds of ~800Mbps+.

 

 

Here is my router configuration:

 

 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"
         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
             }
         }
     }
     receive-redirects disable
     send-redirects enable
     source-validation disable
     syn-cookies enable
 }
 interfaces {
     ethernet eth0 {
         address 192.168.1.10/24
         address 192.168.1.1/24
         description Local
         duplex auto
         speed auto
     }
     ethernet eth1 {
         address dhcp
         description Internet
         duplex auto
         firewall {
             in {
                 name WAN_IN
             }
             local {
                 name WAN_LOCAL
             }
         }
         speed auto
     }
     ethernet eth2 {
         address 192.168.2.1/24
         description "Local 2"
         disable
         duplex auto
         speed auto
     }
     loopback lo {
     }
 }
 port-forward {
     auto-firewall enable
     hairpin-nat enable
     lan-interface eth0
     rule 1 {
         description "Jupyter Notebook"
         forward-to {
             address 192.168.1.13
             port 8888
         }
         original-port 8888
         protocol tcp_udp
     }
     rule 2 {
         description SSH
         forward-to {
             address 192.168.1.13
             port 22
         }
         original-port 2233
         protocol tcp_udp
     }
     rule 3 {
         description "Temp Docs"
         forward-to {
             address 192.168.1.13
             port 8000
         }
         original-port 8000
         protocol tcp_udp
     }
     rule 4 {
         description Tiny-Tiny-RSS
         forward-to {
             address 192.168.1.12
             port 81
         }
         original-port 81
         protocol tcp_udp
     }
     rule 5 {
         description Sonarr
         forward-to {
             address 192.168.1.12
             port 8989
         }
         original-port 8989
         protocol tcp_udp
     }
     wan-interface eth1
 }
 service {
     dhcp-server {
         disabled false
         hostfile-update disable
         shared-network-name LAN1 {
             authoritative disable
             subnet 192.168.1.0/24 {
                 default-router 192.168.1.10
                 dns-server 8.8.8.8
                 dns-server 8.8.4.4
                 lease 86400
                 start 192.168.1.21 {
                     stop 192.168.1.240
                 }
                 static-mapping Samsung-Note4 {
                     ip-address 192.168.1.100
                     mac-address c0:bd:d1:63:72:91
                 }
                 static-mapping Server-IPMI {
                     ip-address 192.168.1.11
                     mac-address 00:25:90:78:82:18
                 }
                 static-mapping Tower {
                     ip-address 192.168.1.12
                     mac-address 00:25:90:78:82:90
                 }
                 static-mapping raspberrypi {
                     ip-address 192.168.1.20
                     mac-address b8:27:eb:92:25:39
                 }
                 static-mapping ubuntu {
                     ip-address 192.168.1.13
                     mac-address 52:54:00:a2:f3:28
                 }
             }
         }
     }
     dns {
         forwarding {
             cache-size 1500
             listen-on eth0
             listen-on eth2
         }
     }
     gui {
         https-port 443
         listen-address 192.168.1.1
     }
     nat {
         rule 5010 {
             outbound-interface eth1
             type masquerade
         }
     }
     ssh {
         port 22
         protocol-version v2
     }
     upnp {
         listen-on eth0 {
             outbound-interface eth1
         }
     }
 }
 system {
     host-name ubnt
     login {
         user ogi {
             authentication {
                 encrypted-password $6$90RW1dahU$AeJ/pre9eFei/jK3NpeuiQyRZqSTKRCeb2QuoXS6NytSUwPYX.sgRZqeWn46ODD4tWE9AXwazKNG6w8gj/sUf/
                 plaintext-password ""
             }
             full-name "ogi moore"
             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 {
         }
     }
     offload {
         ipv4 {
             forwarding enable
             vlan enable
         }
         ipv6 {
             forwarding enable
             vlan enable
         }
     }
     syslog {
         global {
             facility all {
                 level notice
             }
             facility protocols {
                 level debug
             }
         }
     }
     time-zone America/Los_Angeles
     traffic-analysis {
         dpi disable
         export disable
     }
 }
 traffic-control {
 }

Any input would be greatly appreciated.


Viewing all articles
Browse latest Browse all 60861

Trending Articles