Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 664 for nftables (0.36 sec)

  1. hack/local-up-cluster.sh

      # jump through hoops to avoid removing docker/containerd
      # when installing nftables and kmod, as those docker/containerd
      # packages depend on iptables
      dpkg -r --force-depends iptables && \
      apt -y --fix-broken install && \
      apt -y install nftables kmod && \
      apt -y install iptables
    }
    
    function tolerate_cgroups_v2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    # as an addon daemonset.
    KUBE_PROXY_DISABLE="${KUBE_PROXY_DISABLE:-false}" # true, false
    
    # Optional: Change the kube-proxy implementation. Choices are [iptables, ipvs, nftables].
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-iptables}
    
    # Will be passed into the kube-proxy via `--detect-local-mode`
    DETECT_LOCAL_MODE="${DETECT_LOCAL_MODE:-NodeCIDR}"
    
    # Optional: duration of cluster signed certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-proxy/config/v1alpha1,KubeProxyConfiguration,IPTables
    API rule violation: names_match,k8s.io/kube-proxy/config/v1alpha1,KubeProxyConfiguration,NFTables
    API rule violation: names_match,k8s.io/kubelet/config/v1beta1,KubeletConfiguration,IPTablesDropBit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  4. pkg/util/iptables/iptables.go

    }
    
    var iptablesNotFoundStrings = []string{
    	// iptables-legacy [-A|-I] BAD-CHAIN [...]
    	// iptables-legacy [-C|-D] GOOD-CHAIN [...non-matching rule...]
    	// iptables-legacy [-X|-F|-Z] BAD-CHAIN
    	// iptables-nft -X BAD-CHAIN
    	// NB: iptables-nft [-F|-Z] BAD-CHAIN exits with no error
    	"No chain/target/match by that name",
    
    	// iptables-legacy [...] -j BAD-CHAIN
    	// iptables-nft-1.8.0 [-A|-I] BAD-CHAIN [...]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// owner: @danwinship
    	// kep: https://kep.k8s.io/3866
    	// alpha: v1.29
    	// beta: v1.31
    	//
    	// Allows running kube-proxy with `--mode nftables`.
    	NFTablesProxyMode featuregate.Feature = "NFTablesProxyMode"
    
    	// owner: @aravindhp @LorbusChris
    	// kep: http://kep.k8s.io/2271
    	// alpha: v1.27
    	// beta: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
        iptables -w -A INPUT -w -p ICMP -j ACCEPT
        iptables -w -A INPUT -w -p SCTP -j ACCEPT
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

      
      At this point it should be functionally mostly identical to the iptables
      mode, except that it does not (and will not) support Service NodePorts on
      127.0.0.1. (Also note that there are currently no command-line arguments
      for the nftables-specific config; you will need to use a config file if
      you want to set the equivalent of any of the `--iptables-xxx` options.)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - github.com/a8m/tree: [10a5fd5](https://github.com/a8m/tree/tree/10a5fd5)
    - github.com/benbjohnson/clock: [v1.1.0](https://github.com/benbjohnson/clock/tree/v1.1.0)
    - github.com/danwinship/knftables: [v0.0.13](https://github.com/danwinship/knftables/tree/v0.0.13)
    - github.com/dnaeon/go-vcr: [v1.2.0](https://github.com/dnaeon/go-vcr/tree/v1.2.0)
    - github.com/dougm/pretty: [2ee9d74](https://github.com/dougm/pretty/tree/2ee9d74)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. cni/pkg/iptables/iptables.go

    // limitations under the License.
    
    package iptables
    
    import (
    	"errors"
    	"fmt"
    	"net/netip"
    	"strings"
    
    	"istio.io/istio/cni/pkg/ipset"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/tools/istio-iptables/pkg/builder"
    	iptablesconfig "istio.io/istio/tools/istio-iptables/pkg/config"
    	iptablesconstants "istio.io/istio/tools/istio-iptables/pkg/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation.go

    	switch cmd {
    	case constants.IPTables:
    		return true
    	case constants.IPTablesRestore:
    		return true
    	default:
    		return false
    	}
    }
    
    // Constants for iptables commands
    // These should not be used directly/assumed to be present, but should be contextually detected
    const (
    	iptablesBin         = "iptables"
    	iptablesNftBin      = "iptables-nft"
    	iptablesLegacyBin   = "iptables-legacy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top