2024年9月2日 15:17:42
This commit is contained in:
parent
1a916fdd98
commit
1ce912a4cd
@ -13,6 +13,7 @@
|
||||
[AR1-GigabitEthernet0/0/0]ip add 192.168.1.254 24
|
||||
[AR1-GigabitEthernet0/0/0]int g0/0/1
|
||||
[AR1-GigabitEthernet0/0/1]ip add 100.1.1.1 29
|
||||
[AR1-GigabitEthernet0/0/1]quit
|
||||
[AR1]ip route-static 0.0.0.0 0 100.1.1.2
|
||||
```
|
||||
|
||||
@ -27,6 +28,8 @@
|
||||
|
||||
### 二、ACL + NAPT(单一公网地址)
|
||||
|
||||
#### 1、配置
|
||||
|
||||
- **AR1**
|
||||
|
||||
```
|
||||
@ -42,7 +45,7 @@
|
||||
|
||||
> 见 `0902_动态NAT.md`
|
||||
|
||||
### 三、测试【NAPT(单一公网地址)】
|
||||
#### 2、测试
|
||||
|
||||
- **PC PING Server**
|
||||
|
||||
@ -121,7 +124,9 @@
|
||||
>
|
||||
>
|
||||
|
||||
### 四、ACL + NAPT(复数公网地址)
|
||||
### 三、ACL + NAPT(复数公网地址)
|
||||
|
||||
#### 1、配置
|
||||
|
||||
- **AR1**
|
||||
|
||||
@ -150,7 +155,7 @@
|
||||
|
||||
- `[AR1]nat address-group 1 100.1.1.3 100.1.1.5`:创建或修改编号为1的NAT地址组将包含从100.1.1.3到100.1.1.5的IP地址范围
|
||||
|
||||
### 五、测试【NAPT(复数公网地址)】
|
||||
#### 2、测试
|
||||
|
||||
- **AR1**
|
||||
|
||||
@ -186,4 +191,68 @@
|
||||
New DestPort : ----
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
### 四、ACL + NAPT(网段内无冗余IP)
|
||||
|
||||

|
||||
|
||||
| 网段 | 网络地址 | 可用主机地址 | 广播地址 | 子网掩码 |
|
||||
| ------------- | --------- | --------------------- | --------- | --------------- |
|
||||
| 100.1.1.0 /29 | 100.1.1.0 | 100.1.1.1 & 100.1.1.2 | 100.1.1.3 | 255.255.255.252 |
|
||||
|
||||
#### 1、IP & Routing
|
||||
|
||||
- **AR1**
|
||||
|
||||
```
|
||||
[AR1]int g0/0/0
|
||||
[AR1-GigabitEthernet0/0/0]ip add 192.168.1.254 24
|
||||
[AR1-GigabitEthernet0/0/0]int g0/0/1
|
||||
[AR1-GigabitEthernet0/0/1]ip add 100.1.1.1 30
|
||||
[AR1-GigabitEthernet0/0/1]quit
|
||||
[AR1]ip route-static 0.0.0.0 0 100.1.1.2
|
||||
```
|
||||
|
||||
- **IPX-dx**
|
||||
|
||||
```
|
||||
[ISP-dx]int g0/0/0
|
||||
[ISP-dx-GigabitEthernet0/0/0]ip add 100.1.1.2 30
|
||||
[ISP-dx-GigabitEthernet0/0/0]int g0/0/1
|
||||
[ISP-dx-GigabitEthernet0/0/1]ip add 200.1.1.254 24
|
||||
```
|
||||
|
||||
#### 2、ACL
|
||||
|
||||
- **AR1**
|
||||
|
||||
```
|
||||
[AR1]acl 2000
|
||||
[AR1-acl-basic-2000]rule 10 permit source 192.168.1.0 0.0.0.255
|
||||
[AR1-acl-basic-2000]quit
|
||||
[AR1]int g0/0/1
|
||||
[AR1-GigabitEthernet0/0/1]nat outbound 2000
|
||||
```
|
||||
|
||||
#### 3、NAPT
|
||||
|
||||
- **AR1**
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
### 五、NAT-Server(添加内网服务器)
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
#### 1、配置
|
||||
|
||||
- **IP & Routing**
|
||||
-
|
@ -13,6 +13,7 @@
|
||||
[AR1-GigabitEthernet0/0/0]ip add 192.168.1.254 24
|
||||
[AR1-GigabitEthernet0/0/0]int g0/0/1
|
||||
[AR1-GigabitEthernet0/0/1]ip add 100.1.1.1 29
|
||||
[AR1-GigabitEthernet0/0/1]quit
|
||||
[AR1]ip route-static 0.0.0.0 0 100.1.1.2
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user