linux|linux ssh 转发端口及使用
1、设置rsa登陆
ssh-keygen -t rsa -p
3次回车,出现下面的信息,表示rsa生成的位置
Enter file in which the key is (/home/ubuntu/.ssh/id_rsa):将生成的id_rsa.pub拷贝至目标服务器
Enter new passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved with the new passphrase.
scp .ssh/id_rsa.pub root@targetHost:/root/.ssh/id_rsa.pub
id_rsa.pub添加至authorized_keys中,同时,设置authorized_keys的访问权限
cat id_rsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
免密ssh登陆完成
2、使用ssh隧道,转发7070端口 【linux|linux ssh 转发端口及使用】
ssh -qTfnN -D 7070 root@host
3、浏览器设置代理服务器信息 (对应的应用也可以设置相应的应用的代理)
设置>代理服务器>SOCKS>填写127.0.0.1,端口7070
推荐阅读
- Linux下面如何查看tomcat已经使用多少线程
- Beego打包部署到Linux
- SSH|SSH 免密
- ssh生成公钥秘钥
- Linux|109 个实用 shell 脚本
- linux定时任务contab
- 芯灵思SinlinxA33开发板Linux内核定时器编程
- day16-Linux|day16-Linux 软件管理
- 如何在阿里云linux上部署java项目
- 为Google|为Google Cloud配置深度学习环境(CUDA、cuDNN、Tensorflow2、VScode远程ssh等)