1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // Copyright 2018 fatedier, fatedier@gmail.com
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package sub
- import (
- "fmt"
- "os"
- "github.com/spf13/cobra"
- "github.com/fatedier/frp/models/config"
- "github.com/fatedier/frp/models/consts"
- )
- func init() {
- tcpCmd.PersistentFlags().StringVarP(&serverAddr, "server_addr", "s", "127.0.0.1:7000", "frp server's address")
- tcpCmd.PersistentFlags().StringVarP(&user, "user", "u", "", "user")
- tcpCmd.PersistentFlags().StringVarP(&protocol, "protocol", "p", "tcp", "tcp or kcp")
- tcpCmd.PersistentFlags().StringVarP(&token, "token", "t", "", "auth token")
- tcpCmd.PersistentFlags().StringVarP(&logLevel, "log_level", "", "info", "log level")
- tcpCmd.PersistentFlags().StringVarP(&logFile, "log_file", "", "console", "console or file path")
- tcpCmd.PersistentFlags().IntVarP(&logMaxDays, "log_max_days", "", 3, "log file reversed days")
- tcpCmd.PersistentFlags().BoolVarP(&disableLogColor, "disable_log_color", "", false, "disable log color in console")
- tcpCmd.PersistentFlags().StringVarP(&proxyName, "proxy_name", "n", "", "proxy name")
- tcpCmd.PersistentFlags().StringVarP(&localIp, "local_ip", "i", "127.0.0.1", "local ip")
- tcpCmd.PersistentFlags().IntVarP(&localPort, "local_port", "l", 0, "local port")
- tcpCmd.PersistentFlags().IntVarP(&remotePort, "remote_port", "r", 0, "remote port")
- tcpCmd.PersistentFlags().BoolVarP(&useEncryption, "ue", "", false, "use encryption")
- tcpCmd.PersistentFlags().BoolVarP(&useCompression, "uc", "", false, "use compression")
- rootCmd.AddCommand(tcpCmd)
- }
- var tcpCmd = &cobra.Command{
- Use: "tcp",
- Short: "Run frpc with a single tcp proxy",
- RunE: func(cmd *cobra.Command, args []string) error {
- err := parseClientCommonCfg(CfgFileTypeCmd, "")
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- cfg := &config.TcpProxyConf{}
- var prefix string
- if user != "" {
- prefix = user + "."
- }
- cfg.ProxyName = prefix + proxyName
- cfg.ProxyType = consts.TcpProxy
- cfg.LocalIp = localIp
- cfg.LocalPort = localPort
- cfg.RemotePort = remotePort
- cfg.UseEncryption = useEncryption
- cfg.UseCompression = useCompression
- err = cfg.CheckForCli()
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- proxyConfs := map[string]config.ProxyConf{
- cfg.ProxyName: cfg,
- }
- err = startService(proxyConfs, nil)
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- return nil
- },
- }
|