添加nat路由说明

This commit is contained in:
bjdgyc 2022-10-13 15:24:40 +08:00
parent 8c6173d3d8
commit 509a7f1ab1
2 changed files with 4 additions and 2 deletions

View File

@ -170,8 +170,10 @@ iptables -nL -t nat
```shell ```shell
# 假设anylink所在服务器的内网ip: 10.1.0.10 # 假设anylink所在服务器的内网ip: 10.1.0.10
# 传统网络架构,在交换机添加以下静态路由规则 # 传统网络架构,在华三交换机添加以下静态路由规则
ip route-static 192.168.10.0 255.255.255.0 10.1.0.10 ip route-static 192.168.10.0 255.255.255.0 10.1.0.10
# 其他品牌的交换机命令,请参考以下地址
https://cloud.tencent.com/document/product/216/62007
# 公有云环境下需设置vpc下的路由表添加以下路由策略 # 公有云环境下需设置vpc下的路由表添加以下路由策略
目的端: 192.168.10.0/24 目的端: 192.168.10.0/24

View File

@ -3,5 +3,5 @@ package base
const ( const (
APP_NAME = "AnyLink" APP_NAME = "AnyLink"
// 添加radius支持 // 添加radius支持
APP_VER = "0.8.1" APP_VER = "0.9.1-beta1"
) )