DX Unified Infrastructure Management

 View Only
Expand all | Collapse all

SNMPC Template based on specific list of IP Addresses

  • 1.  SNMPC Template based on specific list of IP Addresses

    Broadcom Employee
    Posted Aug 28, 2017 02:58 AM

    Hello, Team.
    I would absolutely value your inputs on how you deal on below challenges.

     

    Challenge Details

    There are list of device IP addresses which we want to manage via template.

    IP address is random and can not be managable via existing criteria feature.

     

    Examples are below.

     

    192.168.0.101

    192.169.11.101

    192.169.11.102

    192.170.12.115

     

     

     

     

    Regards,
    Yu Ishitani



  • 2.  Re: SNMPC Template based on specific list of IP Addresses
    Best Answer

    Broadcom Employee
    Posted Aug 28, 2017 03:29 AM

    you may try with regex:

     

    to match:

     

    192.168.0.101

    192.169.11.101

    192.169.11.102

    192.170.12.115

     

    try:

    /192.168.0.101|192.169.11.101|192.169.11.102|192.170.12.115/

     

    or 

    /192.168.0.101|^192\.169\.11\.(1(0[1-2]))$|192.170.12.115/

     



  • 3.  Re: SNMPC Template based on specific list of IP Addresses

    Broadcom Employee
    Posted Aug 28, 2017 11:31 PM

    Thanks a lot. It worked.