Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for DestinationPort (0.37 sec)

  1. pilot/pkg/networking/core/listener_builder.go

    			// We should not allow requests to the listen port directly. Requests must be
    			// sent to some other original port and iptables redirected to 15001. This
    			// ensures we do not passthrough back to the listen port.
    			DestinationPort: &wrappers.UInt32Value{Value: uint32(push.Mesh.ProxyListenPort)},
    		},
    		Filters: append(
    			buildMetricsNetworkFilters(push, node, istionetworking.ListenerClassSidecarOutbound, nil),
    			&listener.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	match := &listener.FilterChainMatch{}
    	match.ApplicationProtocols = opt.ApplicationProtocols
    	match.TransportProtocol = opt.TransportProtocol
    	if cc.port.TargetPort > 0 {
    		match.DestinationPort = &wrappers.UInt32Value{Value: cc.port.TargetPort}
    	}
    	return match
    }
    
    func (lb *ListenerBuilder) buildInboundHBONEListeners() []*listener.Listener {
    	routes := []*route.Route{{
    		Match: &route.RouteMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    func (sim *Simulation) matchFilterChain(chains []*listener.FilterChain, defaultChain *listener.FilterChain,
    	input Call, hasTLSInspector bool,
    ) (*listener.FilterChain, error) {
    	chains = filter("DestinationPort", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetDestinationPort() == nil
    	}, func(fc *listener.FilterChainMatch) bool {
    		return int(fc.GetDestinationPort().GetValue()) == input.Port
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    	virtualListener := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners)
    	for _, fc := range virtualListener.FilterChains {
    		if fc.FilterChainMatch.DestinationPort.GetValue() == 15021 {
    			t.Fatalf("port 15021 should not be included in inbound listener")
    		}
    	}
    }
    
    func testInboundListenerConfigWithGrpc(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		addrtype := "not-matched"
    		if tracer.localIPs.Has(destIP) {
    			addrtype = "LOCAL"
    		}
    		if !rule.DestinationType.Matches(addrtype) {
    			return false
    		}
    	}
    	if rule.DestinationPort != nil && !rule.DestinationPort.Matches(destPort) {
    		return false
    	}
    
    	// Any rule that checks for past state/history does not match
    	if rule.AffinityCheck != nil || rule.MarkCheck != nil || rule.CTStateCheck != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    applicationProtocols:
                                      description: Applies only to sidecars.
                                      type: string
                                    destinationPort:
                                      description: The destination_port value used by
                                        a filter chain's match condition.
                                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    applicationProtocols:
                                      description: Applies only to sidecars.
                                      type: string
                                    destinationPort:
                                      description: The destination_port value used by
                                        a filter chain's match condition.
                                      maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                    applicationProtocols:
                                      description: Applies only to sidecars.
                                      type: string
                                    destinationPort:
                                      description: The destination_port value used by
                                        a filter chain's match condition.
                                      maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    GATEWAY type: string listener: description: Match on envoy listener attributes. properties: filterChain: description: Match a specific filter chain in a listener. properties: applicationProtocols: description: Applies only to sidecars. type: string destinationPort: description: The destination_port value used by a filter chain's match condition. type: integer filter: description: The name of a specific filter to apply the patch to. properties: name: description: The filter name to match on. type: string...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top