SRX

last person joined: yesterday 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  DHCP option 150 with 2 TFTP servers

    Posted 02-23-2015 22:56

    Hello,

     

    I'm trying to configure the DHCP pool option 150 with two ip addresses however cannot guess the syntax for that.

    In the  KB16352 I see "DHCP option 150 supports a list of TFTP servers (Multiple Server IPs)"

     

    How to configure 2 server IP?

     

    Thanks,

     

    Dmitry



  • 2.  RE: DHCP option 150 with 2 TFTP servers
    Best Answer

     
    Posted 02-24-2015 02:36

    This works for us on SRX210 / 12.1X44-D40:

     

     

    set routing-instances TEST-VR access address-assignment pool VOIP-VLAN family inet dhcp-attributes option 150 array ip-address 10.1.1.1
    set routing-instances TEST-VR access address-assignment pool VOIP-VLAN family inet dhcp-attributes option 150 array ip-address 10.1.1.2

     

     

    routing-instances {
        TEST-VR {
            access {
                address-assignment {
                    pool VOIP-VLAN {
                        family inet {
                            dhcp-attributes {
                                option 150 array ip-address [ 10.1.1.1 10.1.1.2 ];
                            }
                        }
                    }
                }
            }
        }
    }

     

     

     

    Hope this helps.

     

    Regards,

    Sam



  • 3.  RE: DHCP option 150 with 2 TFTP servers

    Posted 02-26-2015 05:12

    Thanks Sam, it is working for me - SRX210 as well

     

    Dmitry