M
M
Maxim2016-06-07 15:25:03
Computer networks
Maxim, 2016-06-07 15:25:03

How to properly configure PPPoE on Juniper SRX100?

Trying to set up pppoe on juniper.
I do according to the instructions
It is not clear why the provider's gateway does not respond?
The provider says that if you received the addresses, then the authorization went well.
config

interfaces {
    fe-0/0/0 {
        description "PPPoE OSK WAN Interface";
        unit 0 {
            encapsulation ppp-over-ether;
        }
    }
    pp0 {
        description "PPPoE OSK Internet";
        unit 0 {
            ppp-options {
                chap {
                    default-chap-secret "#################"; ## SECRET-DATA
                    local-name ######;
                    passive;            
                }
                pap {
                    default-password "############"; ## SECRET-DATA
                    local-name ###########;
                    local-password "##########"; ## SECRET-DATA
                    passive;
                }
            }
            pppoe-options {
                underlying-interface fe-0/0/0.0;
                idle-timeout 0;
                auto-reconnect 3;
                client;
            }
            family inet {
                mtu 1492;
                negotiate-address;
            }
        }
    }
}
routing-options {
    static {
        route 0.0.0.0/0 next-hop pp0.0;
    }
}
security {
    policies {
        default-policy {
            permit-all;
        }
    }
    zones {
        security-zone inet {
            host-inbound-traffic {
                system-services {
                    all;
                }
                protocols {             
                    all;
                }
            }
            interfaces {
                fe-0/0/0.0;
                pp0.0;
            }
        }
    }
}

What did I miss?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Maxim, 2016-06-08
@maxpointn2point

question removed. because the problem was hardware. on another identical router, it worked with half a kick.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question