SRX

 View Only
last person joined: 3 days ago 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  Setting up PPPoE with username and password

    Posted 04-28-2017 20:27

    hello 

     

    im now to the fourms so excuse me if my information is wrong or i sound 'dumb'

     

    ive recently got my hands on a SRX210-HM and ive decided it would be a good idea to use it as the new bussiness router for security reasons howerver my isp doesnt support internal network problems so im left to ask the fourms some pretty dumb questions.

     

    the question is pretty simple my isp will only provide me a PPPoE username and password. unfortunaly im not verry familiar with the SRX's PPPoE interface so im not sure where the information goes and wether its even enough to use the gateway.

     

    Thanks FileFinish180 



  • 2.  RE: Setting up PPPoE with username and password
    Best Answer

     
    Posted 04-29-2017 02:14

    Hi, 

     

    Please see configuration example for PPPoE on SRX: 

    https://kb.juniper.net/InfoCenter/index?page=content&id=KB15736&actp=METADATA

     

    Cheers,

    Ashvin



  • 3.  RE: Setting up PPPoE with username and password

    Posted 04-30-2017 22:22

    thanks for the link looks like thats what i need 

    its a little differnt using the j web but the cli should do 

     

     

    than ks for the help 

     

    regards FIleFinish180



  • 4.  RE: Setting up PPPoE with username and password

    Posted 05-02-2017 09:42

    My functioning PPPoE settings are slightly different

     

    services {
           . . . . 
            dhcp {
               . . . . 
                propagate-ppp-settings pp0.0;
            }
        }
    . . . 
    interfaces {
        ge-0/0/0 {
            unit 0 {
                encapsulation ppp-over-ether;
            }
        }
        . . . 
         pp0 {
            unit 0 {
                apply-macro Startup_Connection;
                ppp-options {
                    chap {
                        default-chap-secret "$9$AvB-u01cye";
                        local-name "bthomehub@btbroadband.com";
                        passive;
                    }
                    pap {
                        local-name "bthomehub@btbroadband.com";
                        local-password "$9$wl2gaDiq";
                        passive;
                    }
                }
                pppoe-options {
                    underlying-interface ge-0/0/0.0;
                }
                family inet {
                    negotiate-address;
                }
            }
        }
    }

    My SRX300 is connected to a (UK spec) Vigor 130 VDSL modem (no router functionality) in PPPoE Bridge mode (passes multicast for IP TV correctly).

     

    I haven't found the documentation that explains what " apply-macro Startup_Connection;" does, but it just works.