Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 664 for nftables (0.46 sec)

  1. docker/iptables.yaml

    contents:
      repositories:
        - https://packages.wolfi.dev/os
      keyring:
        - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
      packages:
        - ca-certificates-bundle
        - wolfi-baselayout
        - glibc
        - iptables
        - ip6tables
        - libnetfilter_conntrack
        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  2. pkg/util/iptables/monitor_test.go

    	tables := make(map[string]sets.Set[string])
    	tables["mangle"] = sets.New[string]()
    	tables["filter"] = sets.New[string]()
    	tables["nat"] = sets.New[string]()
    	return &monitorFakeExec{tables: tables}
    }
    
    func (mfe *monitorFakeExec) blockIPTables(block bool) {
    	mfe.Lock()
    	defer mfe.Unlock()
    
    	mfe.block = block
    }
    
    func (mfe *monitorFakeExec) getWasBlocked() bool {
    	mfe.Lock()
    	defer mfe.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. releasenotes/notes/ssh-iptables.yaml

      **Fixed** an issue causing mTLS errors for traffic on port 22, by including port 22 in iptables by default.
    
    upgradeNotes:
    - title: Port 22 iptables capture changes
      content: |
        In previous versions, port 22 was excluded from iptables capture. This mitigates risk of getting locked out of a VM
        when using Istio on VMs. This configuration was hardcoded into the iptables logic, meaning there was no way to
        capture traffic on port 22.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    func NewFakeProxier(ipFamily v1.IPFamily) (*knftables.Fake, *Proxier) {
    	// TODO: Call NewProxier after refactoring out the goroutine
    	// invocation into a Run() method.
    	nftablesFamily := knftables.IPv4Family
    	podCIDR := "10.0.0.0/8"
    	serviceCIDRs := "172.30.0.0/16"
    	if ipFamily == v1.IPv6Protocol {
    		nftablesFamily = knftables.IPv6Family
    		podCIDR = "fd00:10::/64"
    		serviceCIDRs = "fd00:10:96::/112"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. releasenotes/notes/iptables-lock.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 15:20:31 UTC 2023
    - 245 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http2/hpack/tables.go

    //
    // The returned index is a 1-based HPACK index. For dynamic tables, HPACK says
    // that index 1 should be the newest entry, but t.ents[0] is the oldest entry,
    // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
    // table, the return value i actually refers to the entry t.ents[t.len()-i].
    //
    // All tables are assumed to be a dynamic tables except for the global staticTable.
    //
    // See Section 2.3.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		if parseErr != nil {
    			return IptablesVersion{}, fmt.Errorf("iptables version %q is not a valid version string: %v", verStdOut.Bytes(), parseErr)
    		}
    		// Legacy will have no marking or 'legacy', so just look for nf_tables
    		isNft = strings.Contains(verStdOut.String(), "nf_tables")
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/tables.go

    		// receivers instead of creating stack objects and relying on RVO
    		v.points[i+1].FromP3(tmpP3.fromP1xP1(tmpP1xP1.Add(q, &v.points[i])))
    	}
    }
    
    // This is not optimised for speed; fixed-base tables should be precomputed.
    func (v *affineLookupTable) FromP3(q *Point) {
    	// Goal: v.points[i] = (i+1)*Q, i.e., Q, 2Q, ..., 8Q
    	// This allows lookup of -8Q, ..., -Q, 0, Q, ..., 8Q
    	v.points[0].FromP3(q)
    	tmpP3 := Point{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_test.go

    			ver:  "iptables v1.6.1",
    
    			want: utilversion.MustParseGeneric("1.6.1"),
    		},
    		{
    			name: "centos 7",
    			ver:  "iptables v1.4.21",
    
    			want: utilversion.MustParseGeneric("1.4.21"),
    		},
    		{
    			name: "centos 8",
    			ver:  "iptables v1.8.4 (nf_tables)",
    
    			want: utilversion.MustParseGeneric("1.8.4"),
    		},
    		{
    			name: "alpine 3.18",
    			ver:  "iptables v1.8.9 (legacy)",
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. releasenotes/notes/vm-cleanup-iptables.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29556
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 09 16:00:57 UTC 2021
    - 193 bytes
    - Viewed (0)
Back to top