Skip to content

Commit

Permalink
add proxy/使用快代理使用海外代理访问海外网站.m
Browse files Browse the repository at this point in the history
  • Loading branch information
ss75710541 committed Dec 11, 2023
1 parent a956cdb commit 05812f3
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kubeadm/RockLinux+kubeadm+k8s-1.22.16升级到1.22.17.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## 升级第一个控制面

安装kubeadm 1.22.17
所有master主机安装kubeadm 1.22.17

```
```sh
yum install -y kubeadm-1.22.17-0 --disableexcludes=kubernetes
```

验证 kubeadm 版本

```
```sh
kubeadm version
```

Expand Down Expand Up @@ -111,7 +111,7 @@ _____________________________________________________________________

执行升级到 v1.22.17

```
```sh
kubeadm upgrade apply v1.22.17
```

Expand Down
Binary file added proxy/images/image-20231211160014008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions proxy/使用快代理使用海外代理访问海外网站.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# 使用快代理使用海外代理访问海外网站

## 注册快代理


## 创建海外代理订单

**注意:海外代理只能在大陆以外的主机访问使用**

点免费试用 --> 选择海外代理 --> 创建海外代理

## 查看海外代理

https://www.kuaidaili.com/uc/fps/

![image-20231211160014008](./images/image-20231211160014008.png)

## 使用golang 访问代理服务

参考:https://www.kuaidaili.com/doc/dev/sdk_tps_http/#_1

使用提示

1. http和https网页均可适用
2. 建议*关闭HTTP协议的keep-alive功能*,避免因连接复用导致隧道不能切换IP。

示例代码

```go
// 请求隧道服务器
// http和https网页均适用

package main

import (
"compress/gzip"
"fmt"
"io"
"net/http"
"net/url"
"os"
)

func main() {
// 用户名密码, 若已添加白名单则不需要添加
username := "username" // 上一步图中的代理鉴权用户名
password := "password" // 上一步图中的代理鉴权密码

// 隧道服务器
proxy_raw := "xxx.xxx.com:18866" // 上一步图中的隧道IP HOST地址:http端口或socks端口
proxy_str := fmt.Sprintf("http://%s:%s@%s", username, password, proxy_raw)
proxy, err := url.Parse(proxy_str)

// 目标网页
page_url := "http://dev.kdlapi.com/testproxy"

// 请求目标网页
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxy)}}
req, _ := http.NewRequest("GET", page_url, nil)
req.Header.Add("Accept-Encoding", "gzip") //使用gzip压缩传输数据让访问更快
res, err := client.Do(req)

if err != nil {
// 请求发生异常
fmt.Println(err.Error())
} else {
defer res.Body.Close() //保证最后关闭Body

fmt.Println("status code:", res.StatusCode) // 获取状态码

// 有gzip压缩时,需要解压缩读取返回内容
if res.Header.Get("Content-Encoding") == "gzip" {
reader, _ := gzip.NewReader(res.Body) // gzip解压缩
defer reader.Close()
io.Copy(os.Stdout, reader)
os.Exit(0) // 正常退出
}

// 无gzip压缩, 读取返回内容
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
}

```

**注意:海外代理只能在大陆以外的主机访问使用,所以测试程序部署使用其它代理或部署在大陆以外服务器**

运行后显示结果如下:

```
status code: 200
sucess! client ip: x.x.x.x
```

0 comments on commit 05812f3

Please sign in to comment.