Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for actualWildcard (0.2 sec)

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

    			svcListenAddress = constants.UnspecifiedIPv6
    		}
    
    		if len(destinationCIDR) > 0 || len(svcListenAddress) == 0 || (svcListenAddress == actualWildcard && bind == actualWildcard) {
    			sniHosts = []string{string(service.Hostname)}
    			for _, a := range service.Attributes.Aliases {
    				alt := GenerateAltVirtualHosts(a.Hostname.String(), 0, node.DNSDomain)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    		},
    	}
    }
    
    func (lb *ListenerBuilder) buildConnectTerminateListener(routes []*route.Route) *listener.Listener {
    	actualWildcard, _ := getActualWildcardAndLocalHost(lb.node)
    	l := &listener.Listener{
    		Name:    ConnectTerminate,
    		Address: util.BuildAddress(actualWildcard, model.HBoneInboundListenPort),
    		FilterChains: []*listener.FilterChain{
    			{
    				Name: "default",
    				TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    	opts outboundListenerOpts,
    	actualWildcard string,
    	listenerProtocol istionetworking.ListenerProtocol,
    ) []*filterChainOpts {
    	var rdsName string
    	if opts.port.Port == 0 {
    		rdsName = opts.bind.Primary() // use the UDS as a rds name
    	} else {
    		if listenerProtocol == istionetworking.ListenerProtocolAuto && opts.bind.Primary() != actualWildcard && opts.service != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_inbound.go

    				hbone:       lb.node.IsWaypointProxy(),
    			}
    			if cc.bind == "" {
    				// If user didn't provide, pick one based on IP
    				actualWildcards := getSidecarInboundBindIPs(lb.node)
    				cc.bind = actualWildcards[0]
    				if len(actualWildcards) > 1 {
    					cc.extraBind = actualWildcards[1:]
    				}
    			}
    			// for inbound only generate a standalone listener when bindToPort=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    	actualWildcards, _ := getWildcardsAndLocalHost(lb.node.GetIPMode())
    	// add an extra listener that binds to the port that is the recipient of the iptables redirect
    	ipTablesListener := &listener.Listener{
    		Name:             model.VirtualOutboundListenerName,
    		Address:          util.BuildAddress(actualWildcards[0], uint32(lb.push.Mesh.ProxyListenPort)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    				port.Number, builder.node.ID)
    			continue
    		}
    		var extraBind []string
    		bind := actualWildcards[0]
    		if features.EnableDualStack && len(actualWildcards) > 1 {
    			extraBind = actualWildcards[1:]
    		}
    		if len(port.Bind) > 0 {
    			bind = port.Bind
    			extraBind = nil
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    		},
    	}
    	for _, tt := range tests {
    		tt.proxy.DiscoverIPMode()
    		actualWildcards, _ := getWildcardsAndLocalHost(tt.proxy.GetIPMode())
    		if len(actualWildcards) != len(tt.expected) {
    			t.Errorf("Test %s failed, expected: %v got: %v", tt.name, tt.expected, actualWildcards)
    		}
    	}
    }
    
    func TestGetDualStackLocalHost(t *testing.T) {
    	tests := []struct {
    		name     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top