Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for passthroughBindIPs (0.37 sec)

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

    	// 6 is the magical number for inbound: 15006, 127.0.0.6, ::6
    	InboundPassthroughBindIpv4 = "127.0.0.6"
    	InboundPassthroughBindIpv6 = "::6"
    )
    
    var (
    	// maintain 3 maps to return wildCards, localHosts and passthroughBindIPs according to IP mode of proxy
    	wildCards = map[model.IPMode][]string{
    		model.IPv4: {WildcardAddress},
    		model.IPv6: {WildcardIPv6Address},
    		model.Dual: {WildcardAddress, WildcardIPv6Address},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    		// more than one IP for the proxy.
    		if features.EnableDualStack && len(cb.passThroughBindIPs) > 1 {
    			// add extra source addresses to cluster builder
    			var extraSrcAddrs []*core.ExtraSourceAddress
    			for _, extraBdIP := range cb.passThroughBindIPs[1:] {
    				extraSrcAddr := &core.ExtraSourceAddress{
    					Address: &core.SocketAddress{
    						Address: extraBdIP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top