Quantcast
Viewing all articles
Browse latest Browse all 20028

EdgeRouter Lite 3 using PPPoE, port fowarding not working

I've been trying to open a port through my new EdgeRouter Lite 3 to allow access from the WAN to a windows computer running remote desktop on the LAN.  I've tried following various instructions on the community sites to no avail; the port is not open.  I would appreciate any help on this.

 

I'm trying to open up port 3391 on the WAN side, and forward the requests to IP 10.0.0.10, port 3389 on the LAN side.  I am using PPPoE (CenturyLink DSL), perhaps that is part of the problem?  My modem is set up to use RFC 1483 bridging mode.

 

Here is my 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"
        rule 10 {
            action accept
            description "Allow established/related"
            state {
                established enable
                related enable
            }
        }
        rule 30 {
            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
            }
        }
        rule 30 {
            action accept
            description "Allow RDP to Ezekiel"
            destination {
                address 10.0.0.10
                port 3389
            }
            log enable
            protocol tcp_udp
            source {
                address 63.226.156.88
                port 3391
            }
        }
    }
    options {
        mss-clamp {
            mss 1412
        }
    }
    receive-redirects disable
    send-redirects enable
    source-validation disable
    syn-cookies enable
}
interfaces {
    ethernet eth0 {
        description "Internet (PPPoE)"
        dhcp-options {
            default-route update
            default-route-distance 210
            name-server no-update
        }
        duplex auto
        pppoe 0 {
            default-route auto
            firewall {
                in {
                    name WAN_IN
                }
                local {
                    name WAN_LOCAL
                }
            }
            mtu 1492
            name-server none
            password [removed]
            user-id [removed]
        }
        speed auto
    }
    ethernet eth1 {
        address 10.0.0.2/22
        description Local
        duplex auto
        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 disable
    lan-interface eth1
    rule 1 {
        description "RDP on Ezekiel"
        forward-to {
            address 10.0.0.10
            port 3389
        }
        original-port 3391
        protocol tcp_udp
    }
    wan-interface eth0
}
service {
    dhcp-server {
        disabled false
        hostfile-update disable
        shared-network-name LAN1 {
            authoritative enable
            subnet 10.0.0.0/22 {
                default-router 10.0.0.2
                dns-server 10.0.0.2
                lease 14400
                start 10.0.0.50 {
                    stop 10.0.3.254
                }
                static-mapping Soundboard {
                    ip-address 10.0.0.20
                    mac-address 00:15:64:02:D4:63
                }
            }
        }
        shared-network-name LAN2 {
            authoritative enable
            disable
            subnet 192.168.2.0/24 {
                default-router 192.168.2.1
                dns-server 192.168.2.1
                lease 86400
                start 192.168.2.38 {
                    stop 192.168.2.243
                }
            }
        }
        use-dnsmasq disable
    }
    dns {
        forwarding {
            cache-size 150
            listen-on eth1
            listen-on eth2
            name-server 208.67.222.222
            name-server 208.67.220.220
            system
        }
    }
    gui {
        http-port 80
        https-port 443
        older-ciphers enable
    }
    nat {
        rule 1 {
            description "DNS Redirect"
            destination {
                address !10.0.0.2
                port 53
            }
            inbound-interface eth1
            inside-address {
                address 10.0.0.2
            }
            log disable
            protocol tcp_udp
            type destination
        }
        rule 5010 {
            description "masquerade for WAN"
            outbound-interface pppoe0
            type masquerade
        }
    }
    ssh {
        port 22
        protocol-version v2
    }
}
system {
    host-name router
    login {
        user admin {
            authentication {
                encrypted-password [removed]
                plaintext-password ""
            }
            full-name Admin
            level admin
        }
    }
    name-server 208.67.222.222
    name-server 208.67.220.220
    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
            pppoe enable
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone UTC
    traffic-analysis {
        dpi disable
        export disable
    }
}


/* 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.9.0.4901118.160804.1131 */

Viewing all articles
Browse latest Browse all 20028

Trending Articles