Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for prefix_ranges (0.19 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

                "cluster": "BlackHoleCluster"
               }
              }
             ],
             "name": "virtualInbound-blackhole"
            },
            {
             "filter_chain_match": {
              "prefix_ranges": [
               {
                "address_prefix": "0.0.0.0",
                "prefix_len": 0
               }
              ],
              "transport_protocol": "tls",
              "application_protocols": [
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    		}
    	}
    
    	port := ""
    	if match.DestinationPort != nil {
    		port = fmt.Sprintf(":%d", match.DestinationPort.GetValue())
    	}
    	if len(match.PrefixRanges) > 0 {
    		pf := []string{}
    		for _, p := range match.PrefixRanges {
    			pf = append(pf, fmt.Sprintf("%s/%d", p.AddressPrefix, p.GetPrefixLen().GetValue()))
    		}
    		descrs = append(descrs, fmt.Sprintf("Addr: %s%s", strings.Join(pf, ","), port))
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top