Changeset 427
- Timestamp:
- 07/08/10 18:04:35 (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/search.cgi
r417 r427 148 148 if ($webvar{cidr} eq '') { # We has a blank CIDR. Ignore it. 149 149 } elsif ($webvar{cidr} =~ /\//) { 150 # 209.91.179/26 should show all /26 subnets in 209.91.179150 # 192.168.179/26 should show all /26 subnets in 192.168.179 151 151 my ($net,$maskbits) = split /\//, $webvar{cidr}; 152 152 if ($webvar{cidr} =~ /^(\d{1,3}\.){3}\d{1,3}\/\d{2}$/) { … … 340 340 $query =~ s/\s+//g; 341 341 if ($query =~ /\//) { 342 # 209.91.179/26 should show all /26 subnets in 209.91.179342 # 192.168.179/26 should show all /26 subnets in 192.168.179 343 343 my ($net,$maskbits) = split /\//, $query; 344 344 if ($query =~ /^(\d{1,3}\.){3}\d{1,3}\/\d{2}$/) { -
trunk/help.html
r413 r427 14 14 15 15 <tr class="color1"> 16 <td>IP blocks</td><td> 209.91.128 or 209.</td>16 <td>IP blocks</td><td>192.168.28 or 192.</td> 17 17 <td>Lists all alloctions starting with that set of octets. Note that matches on the 18 18 first octet MUST include the period to be considered an IP search.</td> 19 19 </tr> 20 20 <tr class="color2"> 21 <td>CIDR blocks</td><td> 209.92.128/30</br>or22 209.92.128.0/30</td><td>Lists all /30's beginning with 209.91.128 or checks for an23 exact match for 209.92.128.0/30 respectively</td>21 <td>CIDR blocks</td><td>192.168.28/30</br>or 22 192.168.28.0/30</td><td>Lists all /30's beginning with 192.168.28 or checks for an 23 exact match for 192.168.28.0/30 respectively</td> 24 24 </tr> 25 25 <tr class="color1"> 26 <td>IP address</td><td> 209.92.128.30</td><td>Finds the alloction that IP is a26 <td>IP address</td><td>192.168.28.30</td><td>Finds the alloction that IP is a 27 27 part of (if any)</td> 28 28 </tr> 29 29 <tr class="color2"> 30 <td>Customer ID:</td><td>705 or 6137328844 or 503101</td><td>Find all alloctions to that 31 customer. Matches on prefix (area code, area code + exchange, etc). Searches old as well as 32 new CustIDs. 30 <td>Customer ID:</td><td>123456</td><td>Find all alloctions to that 31 customer. Customer IDs are assumed to be numeric for this search. 33 32 </td> 34 33 </tr> 35 34 <tr class="color1"> 36 <td>Description:</td><td>cable or efni</td><td>Find all allocations with the search term in35 <td>Description:</td><td>cable or BigCustomer</td><td>Find all allocations with the search term in 37 36 the description. Note that searches for CustIDs with letters will fall under this category 38 un tilCustIDs are all-numeric.</td>37 unless CustIDs are all-numeric.</td> 39 38 </tr> 40 39
Note:
See TracChangeset
for help on using the changeset viewer.