Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for sctp (0.17 sec)

  1. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // * must start and end with an alphanumeric character.
      // Default is empty string.
      optional string name = 1;
    
      // protocol represents the IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      optional string protocol = 2;
    
      // port represents the port number of the endpoint.
      // If this is not specified, ports are not restricted and must be
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/discovery/v1/generated.proto

      // * must start and end with an alphanumeric character.
      // Default is empty string.
      optional string name = 1;
    
      // protocol represents the IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      optional string protocol = 2;
    
      // port represents the port number of the endpoint.
      // If this is not specified, ports are not restricted and must be
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    			}
    			if port < 1 || port > 65535 {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --sftp=%s, (port number must be between 1 to 65535)", arg), "unable to start SFTP server")
    			}
    			publicIP = host
    		case "ssh-private-key":
    			sshPrivateKey = tokens[1]
    		}
    	}
    
    	if port == 0 {
    		port = 8022 // Default SFTP port, since no port was given.
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. cmd/server-main_test.go

    		t.Run(testcase.config, func(t *testing.T) {
    			sctx := &serverCtxt{}
    			err := mergeServerCtxtFromConfigFile(testcase.config, sctx)
    			if testcase.expectedErr && err == nil {
    				t.Error("expected failure, got success")
    			}
    			if !testcase.expectedErr && err != nil {
    				t.Error("expected success, got failure", err)
    			}
    			if err == nil {
    				if len(sctx.Layout.pools) != 2 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. docs/ftp/README.md

    ...
    ```
    
    
    Following example shows connecting via sftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    sftp -P 8022 minioadmin@localhost
    minioadmin@localhost's password:
    Connected to localhost.
    sftp> ls runner/
    chunkdocs  testdir
    ```
    
    Following example shows how to download an object locally via `sftp` client:
    
    ```
    sftp> get runner/chunkdocs/metadata metadata
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 15 14:34:02 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  6. cmd/testdata/config/1.yaml

            - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    
    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 881 bytes
    - Viewed (0)
  7. cmd/testdata/config/2.yaml

            - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    
    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 869 bytes
    - Viewed (0)
  8. cmd/testdata/config/invalid-disks.yaml

            - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    
    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 863 bytes
    - Viewed (0)
  9. internal/config/server.go

    type Opts struct {
    	FTP struct {
    		Address          string `yaml:"address"`
    		PassivePortRange string `yaml:"passive-port-range"`
    	} `yaml:"ftp"`
    	SFTP struct {
    		Address       string `yaml:"address"`
    		SSHPrivateKey string `yaml:"ssh-private-key"`
    	} `yaml:"sftp"`
    }
    
    // ServerConfig represents a MinIO configuration file
    type ServerConfig struct {
    	Version     string     `yaml:"version"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Dec 08 20:04:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_env_thumbnail.properties

    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    mail.return.path = root@localhost
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 2.2K bytes
    - Viewed (0)
Back to top