Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for logback (0.27 sec)

  1. tools/istio-iptables/pkg/capture/run_test.go

    				cfg.OwnerGroupsExclude = "888,ftp"
    			},
    		},
    		{
    			"outbound-ports-include",
    			func(cfg *config.Config) {
    				cfg.OutboundPortsInclude = "32000,31000"
    			},
    		},
    		{
    			"loopback-outbound-iprange",
    			func(cfg *config.Config) {
    				cfg.OutboundIPRangesInclude = "127.1.2.3/32"
    				cfg.DryRun = true
    				cfg.RedirectDNS = true
    				cfg.DNSServersV4 = []string{"127.0.0.53"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    			// In the ISTIOINBOUND chain, '-j ISTIODIVERT' reroutes to the loopback
    			// interface.
    			// Mark all inbound packets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. src/net/interface.go

    	FlagLoopback                       // interface is a loopback interface
    	FlagPointToPoint                   // interface belongs to a point-to-point link
    	FlagMulticast                      // interface supports multicast access capability
    	FlagRunning                        // interface is in running state
    )
    
    var flagNames = []string{
    	"up",
    	"broadcast",
    	"loopback",
    	"pointtopoint",
    	"multicast",
    	"running",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/run_linux.go

    					return fmt.Errorf("failed to configure netlink rule: %v", err)
    				}
    			}
    			// In routing table ${INBOUND_TPROXY_ROUTE_TABLE}, create a single default rule to route all traffic to
    			// the loopback interface.
    			// Equivalent to `ip route add local default dev lo table <table>`
    			cidrs := []string{"0.0.0.0/0"}
    			if cfg.EnableIPv6 {
    				cidrs = append(cidrs, "0::0/0")
    			}
    			for _, fullCIDR := range cidrs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables_linux.go

    		if err != nil {
    			return fmt.Errorf("parse CIDR: %v", err)
    		}
    
    		netlinkRoutes := []*netlink.Route{
    			// In routing table ${INBOUND_TPROXY_ROUTE_TABLE}, create a single default rule to route all traffic to
    			// the loopback interface.
    			// Equiv: "ip route add local 0.0.0.0/0 dev lo table 100"
    			{
    				Dst:       localhostDst,
    				Scope:     netlink.SCOPE_HOST,
    				Type:      unix.RTN_LOCAL,
    				Table:     RouteTableInbound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. pkg/proxy/metrics/metrics.go

    	// by iptables which were destined for nodeports on loopback interface.
    	localhostNodePortsAcceptedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_localhost_nodeports_accepted_packets_total",
    		"Number of packets accepted on nodeports of loopback interface",
    		nil, nil, metrics.ALPHA, "")
    	LocalhostNodePortAcceptedNFAcctCounter     = "localhost_nps_accepted_pkts"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

                args.add(keyName);
            }
            if (passphrase != null) {
                if (useLegacyGpg) {
                    args.add("--no-use-agent");
                } else {
                    args.add("--pinentry-mode=loopback");
                }
                args.add("--passphrase-fd");
                args.add("0");
            } else {
                if (useLegacyGpg) {
                    args.add("--use-agent");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    			linkLocalUnicast: true,
    		},
    		{
    			name:     "loopback v4Addr",
    			ip:       loopback4,
    			loopback: true,
    		},
    		{
    			name:     "loopback v6Addr",
    			ip:       IPv6Loopback(),
    			loopback: true,
    		},
    		{
    			name:     "loopback v6 mapped v4Addr",
    			ip:       AddrFrom16(IPv6Loopback().As16()),
    			loopback: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    // if the loopback client config is specified AND it has a bearer token. Note that if either authn or
    // authz is nil, this function won't add a token authenticator or authorizer.
    func AuthorizeClientBearerToken(loopback *restclient.Config, authn *AuthenticationInfo, authz *AuthorizationInfo) {
    	if loopback == nil || len(loopback.BearerToken) == 0 {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common.go

    	// use only link-local addresses (e.g. as described in RFC5549).
    	// In many cases that matching global unicast IP address can be found on loopback interface,
    	// so kubeadm allows users to specify address=Loopback for handling supporting the scenario above.
    	// Nb. SetAPIEndpointDynamicDefaults will try to translate loopback to a valid address afterwards
    	if ip.IsLoopback() {
    		return nil
    	}
    	if !ip.IsGlobalUnicast() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top