摘要: 文中所有的shadows替换为shadows连接ocks *在可上网的机器****Test-Internet (192.168.2.53)**** 上配置* ## 下载shadows安装包: **git clone -b master https://github.com/shadows/shado 阅读全文
posted @ 2023-10-09 17:59 小糊涂90 阅读(328) 评论(0) 推荐(0)
摘要: SNAT 在172.16.188.10上配置: #新增源地址转换规则(iptables工具管理) iptables -t nat -A POSTROUTING -s 10.0.0.0/8 -j SNAT -o face1 --to 172.16.188.10 #新增源地址转换规则(firewalld 阅读全文
posted @ 2023-10-09 17:51 小糊涂90 阅读(384) 评论(0) 推荐(0)
摘要: 安装pip3 yum install -y python3-pip 列出已经安装的模块 pip3 list 离线模块 pip3 download -d pypackets/ -r requirement.txt -i http://mirrors.aliyun.com/pypi/simple/ -- 阅读全文
posted @ 2023-10-09 17:42 小糊涂90 阅读(27) 评论(0) 推荐(0)
摘要: 一、Mysql数据库安装 #安装 yum install -y mysql-server #开启mysqld服务 systemctl start mysqld #设置服务开机自启 systemctl enable mysqld #修改默认密码,并创建用户datax及数据库datax-web mysq 阅读全文
posted @ 2023-10-09 17:32 小糊涂90 阅读(247) 评论(0) 推荐(0)