美文网首页
2019-01-01 基于内网穿透实现手机连接mac的shell

2019-01-01 基于内网穿透实现手机连接mac的shell

作者: 我叫钱多多_ | 来源:发表于2019-01-01 16:02 被阅读0次

    基于内网穿透实现手机阿里云ssh终端控制自己的mac电脑

    • 基本准备 :mac 一台版本不限制:
    • 云服务器
    • 已搭建好的ngrok服务(不会搭建的看我之前的教程)

    步骤:

    1.先打开 mac的远程登录服务
    2.系统设置中打开分享


    image.png
    1. 打开mac的远程登录服务,并且视情况而定是否打开远程管理中的权限等(傻瓜式操作,需要的打钩就行) image.png

      4.在终端通过命令连接服务端
      /ngrok -subdomain <该处为任意变量> -config=/ngrok.cfg -log=/myngrok.log -proto=tcp 22
      5.出现如图情况就代表可以了


      image.png

    6.根据图中的,远程端口开放自己云服务器的高位端口(不会开放端口,在之前的内网穿透教程中有讲解)就可以用手机连接了
    7.指定远程端口配置文件(配置文件中不能使用Tab键盘缩进,必须使用空格)

    server_addr: 'ip:port'
    trust_host_root_certs: false
    tunnels:
      ssh:
       remote_port: xxxx
       proto:
        tcp: 22
    

    以及启动命令:

    ngrok -config=ngrok.yml -log=myngrok.log start ssh

    效果图

    image.png

    相关文章

      网友评论

          本文标题:2019-01-01 基于内网穿透实现手机连接mac的shell

          本文链接:https://www.haomeiwen.com/subject/vrbnlqtx.html