摘要:
title: frp内网穿透 date: 2021-12-30 21:56:06 tags: frp有很详细的官方教程:https://gofrp.org/docs/ 里面甚至有一些例子。最简单的例子:https://gofrp.org/docs/examples/ssh/ frp还支持p2p内网穿 阅读全文
摘要:
title: git协议使用代理 date: 2022-05-27 21:46:24 tags: 首先,github.com的git@github.com:xxx/xxxx.git使用的其实不是git协议,而是SSH协议,所以如果要代理之,需要配置的其实是SSH代理,在~/.ssh/config里配 阅读全文
摘要:
title: linux shell查看实时网速 date: 2021-07-01 11:17:57 jnettop sudo apt install jnettop jnettop nethogs 这个在centos上也可以用。 sudo yum install epel-release sudo 阅读全文
摘要:
title: linux查看开启的端口 date: 2022-05-17 14:11:01 tags: nmap -p- 地址 查看本地开启的端口: nmap -p- localhost 来源:https://www.techtarget.com/searchsecurity/feature/How 阅读全文
摘要:
title: nmap学习笔记 date: 2023-01-13 12:07:41 tags: 端口扫描 nmap -p端口 地址 地址 地址可以用通配符,比如192.168.*.1表示192.168.1.1、192.168.2.1、……、192.168.255.1。 也可以用CIDR(Classl 阅读全文
摘要:
title: nmcli device status unmanaged date: 2022-04-17 21:12:18 tags: 症状: nmcli device status DEVICE TYPE STATE CONNECTION enp89s0 ethernet unmanaged - 阅读全文
摘要:
title: ssh ProxyCommand免密码 date: 2022-03-13 21:00:48 tags: 假设自己的电脑是A,跳板机是B,要访问的机器是C。首先在A上生成ssh密钥,然后把公钥放到B和C上。然后在A机器上的.ssh/config里进行如下配置: Host B HostNa 阅读全文
摘要:
title: .ssh/config注释 date: 2022-02-28 13:20:36 tags: 在前面加上#就是注释了。 参考:https://www.ssh.com/academy/ssh/config 阅读全文
摘要:
title: vscode在选中的每行开头插入 date: 2022-11-01 18:58:45 tags: 首先alt+shift+i在选中的每行末尾创建一个光标,然后再按两下Home键将光标移动到每行开头,然后再插入即可。按ESC即可退出多行编辑模式。 如果vscode开启了自动换行,那么在自 阅读全文
摘要:
title: vscode断点停在错误的文件 date: 2023-04-25 21:55:57 tags: 在launch.json中加入: "sourceFileMap":{ "/项目/绝对/路径": { "editorPath": "/项目/绝对/路径", "useForBreakpoints 阅读全文