Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sftp (0.05 sec)

  1. cluster/gce/gci/configure-helper.sh

      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      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)
  2. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"service2", "LoadBalancer", "1.3.4.5", "<pending>", "80/TCP,8090/UDP,8000/TCP,7777/SCTP", "<unknown>"}}},
    		},
    		// Test load balancer service with multiple ports.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        if ! gcloud compute firewall-rules create "$1" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-ranges "$2" \
          --target-tags "$3" \
          --allow tcp,udp,icmp,esp,ah,sctp; then
          if (( attempt > 4 )); then
            echo -e "${color_red}Failed to create firewall rule $1 ${color_norm}" >&2
            exit 2
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top