SRX

 View Only
last person joined: 4 days ago 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  Dynamic WAN IP

    Posted 06-10-2010 15:54

    I have a test lab with a cable modem plugged into a SRX210. Is there a way for the srx to pull a dhcp IP from the cable modem? Or do I have to get a static IP for it to work?



  • 2.  RE: Dynamic WAN IP
    Best Answer

    Posted 06-10-2010 16:40

    interfaces {
        ge-0/0/0 {
            unit 0 {
                family inet {
                    dhcp;
                }
            }
        }
       

    zones {
            security-zone untrust {
                screen untrust-screen;
                interfaces {
                    ge-0/0/0.0 {
                        host-inbound-traffic {
                            system-services {
                                dhcp;
                            }
                        }
                    }
                }
            }



  • 3.  RE: Dynamic WAN IP

    Posted 06-10-2010 16:52

    as an addon to this, I don't know if they've fixed it, but in 9.6 timeframe if you did a 'show route' you would not see the learned default route.

     

    However the default route is there, but you have to issue the command 'show route forwarding-table' to see it



  • 4.  RE: Dynamic WAN IP

    Posted 06-10-2010 17:22

    Thank you very much.