Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 746 for fwmark (0.2 sec)

  1. pkg/proxy/ipvs/util/ipvs_linux_test.go

    			},
    			VirtualServer{},
    			true,
    			fmt.Sprintf("IPVS Service Flags should include %x, got 0x1", FlagHashed),
    		},
    		{
    			libipvs.Service{
    				Protocol:      unix.IPPROTO_TCP,
    				Port:          80,
    				FWMark:        0,
    				SchedName:     "",
    				Flags:         uint32(FlagPersistent + FlagHashed),
    				Timeout:       0,
    				Netmask:       0xffffffff,
    				AddressFamily: unix.AF_INET,
    				Address:       nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run_linux.go

    			// Equivalent to `ip rule add fwmark <tproxyMark> lookup <tproxyTable>`
    			families := []int{unix.AF_INET}
    			if cfg.EnableIPv6 {
    				families = append(families, unix.AF_INET6)
    			}
    			for _, family := range families {
    				r := netlink.NewRule()
    				r.Family = family
    				r.Table = tproxyTable
    				r.Mark = tproxyMark
    				if err := netlink.RuleAdd(r); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables_linux.go

    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    		// TODO largely identical/copied from tools/istio-iptables/pkg/capture/run_linux.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/types.go

    )
    
    // KubeProxyIPTablesConfiguration contains iptables-related configuration
    // details for the Kubernetes proxy server.
    type KubeProxyIPTablesConfiguration struct {
    	// masqueradeBit is the bit of the iptables fwmark space to use for SNAT if using
    	// the iptables or ipvs proxy mode. Values must be within the range [0, 31].
    	MasqueradeBit *int32
    	// masqueradeAll tells kube-proxy to SNAT all traffic sent to Service cluster IPs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    	fs.Int32Var(o.config.IPTables.MasqueradeBit, "iptables-masquerade-bit", ptr.Deref(o.config.IPTables.MasqueradeBit, 14), "If using the iptables or ipvs proxy mode, the bit of the fwmark space to mark packets requiring SNAT with.  Must be within the range [0, 31].")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/img/exclamation-mark.svg

    exclamation-mark.svg...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. cni/pkg/iptables/testdata/default.golden

    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15006 --tproxy-mark 0x111/0xfff
    iptables -t mangle -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    iptables -t nat -A ISTIO_OUTPUT ! -o lo -p udp -m udp --dport 53 -j REDIRECT --to-port 15053
    iptables -t nat -A ISTIO_OUTPUT -p tcp -m mark --mark 0x111/0xfff -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	// happened.
    	//
    	// startSema protects the transition from "off" to mark or
    	// mark termination.
    	startSema uint32
    	// markDoneSema protects transitions from mark to mark termination.
    	markDoneSema uint32
    
    	bgMarkDone uint32 // cas to 1 when at a background mark completion point
    	// Background mark completion signaling
    
    	// mode is the concurrency mode of the current GC cycle.
    	mode gcMode
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. pkg/volume/volume_linux_test.go

    			}
    
    			gid := stat.Gid
    
    			var expectedGid int64
    
    			if test.gidOwnerMatch {
    				expectedGid = int64(gid)
    			} else {
    				expectedGid = int64(gid + 3000)
    			}
    
    			mask := rwMask
    
    			if test.permissionMatch {
    				mask |= execMask
    
    			}
    			if test.sgidMatch {
    				mask |= os.ModeSetgid
    				mask = info.Mode() | mask
    			} else {
    				nosgidPerm := info.Mode() &^ os.ModeSetgid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/unicode/graphic.go

    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&(pLmask) != 0
    	}
    	return isExcludingLatin(Letter, r)
    }
    
    // IsMark reports whether the rune is a mark character (category [M]).
    func IsMark(r rune) bool {
    	// There are no mark characters in Latin-1.
    	return isExcludingLatin(Mark, r)
    }
    
    // IsNumber reports whether the rune is a number (category [N]).
    func IsNumber(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top